摘要:
问题:执行结果提示:Ran 0 tests in 0.000s,看不到自动化测试工具selenium打开网页执行代码过程 原因:unittest框架中,main()方法定义函数时使用的是以"test_xxx"或"testxxx"的格式 解决方法:将代码中的方法名改为test_xxx或者testxxx 阅读全文
摘要:
#-*-coding:utf-8-*- from selenium import webdriver import time import unittest class Function(unittest.TestCase): def setUp(self): self.driver = webdr 阅读全文
摘要:
Auto.py调用Respository.py中封装好的方法: Auto.py: #!D:\Python3.7.2\python.exe #-*-coding:utf-8-*- from selenium import webdriver import time from Respository i 阅读全文