import HTMLTestRunner import time import unittest from selenium import webdriver from selenium.webdriver.common.by import By from 'E:\我的工作\控制台\src\test\python\auth' import config import os def mkdir(url): os.makedirs(os.path.join('E:\我的工作\控制台\src\test\python\auth',url), exist_ok=True) # folder = os.path.join(date_dir) class TestMyWebdriver(unittest.TestCase): def test_title(self): self.driver = webdriver.Chrome() def test_gtr(self): self.driver = webdriver.Chrome() # self.outputBuffer = io.BytesIO() # DEFAULT是配置文件中的一个配置节 self.driver.get(config.config.get('url')) self.assertEqual(self.driver.title, "Vuetify-Lux")这段代码有何问题
时间: 2024-04-06 08:30:48 浏览: 72
webdriver原理解析-python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
这段代码缺少了结束语句,即缺少了 `if __name__ == '__main__': unittest.main(testRunner=HTMLTestRunner.HTMLTestRunner(output='report'))) `。此外,在 `from 'E:\我的工作\控制台\src\test\python\auth' import config` 这一行,文件路径中的反斜杠应该改为正斜杠。最后,在 `test_title` 和 `test_gtr` 函数中,应该添加 `self.driver.quit()` 以关闭 Chrome 浏览器。
阅读全文