planterbox-webdriver
一套用于使用Selenium进行Web测试的的步骤
用法
安装planterbox和planterbox-webdriver : pip install planterbox planterbox-webdriver
将unittest.cfg添加到启用planterbox的项目中:
[unittest]
plugins = planterbox
[planterbox]
always-on = True
3.创建一个包含测试的程序包; 它的__init__.py定义了.feature文件中可用的步骤。 该包装必须被nose2检测为包含测试。 请参见。
添加一个“ before”挂钩,为您的测试设置网络驱动程序:
@hook('before', 'feature')
def create_webdriver(test):
from
评论0
最新资源