我的脚本中有100个测试用例,我只想运行其他测试用例('it'块),那么我该怎么做呢?我必须使用'if'条件或其他解决方案?
答案 0 :(得分:0)
如果只想运行一组特定的测试,则可以将f
前缀添加到it
或describe
组-fit
,fdescribe
中。但这只是一种用于调试目的的快速解决方案。
另一种解决方法是量角器suites
suites: {
homepage: 'tests/e2e/homepage/**/*Spec.js',
search: ['tests/e2e/contact_search/**/*Spec.js',
'tests/e2e/venue_search/**/*Spec.js']
},
创建一个命名套件并向其中添加文件。然后,您可以独立运行它们
protractor protractor.conf.js --suite homepage