作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Protractor 1.8.0 和 jasmine 2.1.3 但是
当我使用 ddescribe 然后使用 iit 时,我无法运行单个测试。我得到:Message: ReferenceError: iit is not defined
我有很多测试用例,只想运行 1 进行调试。有没有办法做到这一点?
我需要 $npm install jasmine-focused 还是它已经是 jasmine 2.1.3 的一部分?
@Aaron 我继续卸载并重新安装。运行测试并得到相同的错误。这是安装后的输出。
/usr/local/bin/protractor -> /usr/local/lib/node_modules/protractor/bin/protractor
/usr/local/bin/webdriver-manager -> /usr/local/lib/node_modules/protractor/bin/webdriver-manager
protractor@1.8.0 /usr/local/lib/node_modules/protractor
├── jasminewd@1.1.0
├── jasminewd2@0.0.2
├── saucelabs@0.1.1
├── html-entities@1.1.2
├── q@1.0.0
├── minijasminenode@1.1.1
├── adm-zip@0.4.4
├── optimist@0.6.1 (wordwrap@0.0.2, minimist@0.0.10)
├── glob@3.2.11 (inherits@2.0.1, minimatch@0.3.0)
├── accessibility-developer-tools@2.6.0
├── source-map-support@0.2.9 (source-map@0.1.32)
├── lodash@2.4.1
├── request@2.36.0 (json-stringify-safe@5.0.0, forever-agent@0.5.2, aws-sign2@0.5.0, qs@0.6.6, oauth-sign@0.3.0, tunnel-agent@0.4.0, mime@1.2.11, node-uuid@1.4.3, http-signature@0.10.1, form-data@0.1.4, tough-cookie@0.12.1, hawk@1.0.0)
├── jasmine@2.1.1 (jasmine-core@2.1.3)
└── selenium-webdriver@2.44.0 (tmp@0.0.24, xml2js@0.4.4)
最佳答案
从 2.1 开始,它的语法是 fdescribe
和 fit
. Source
describe('a test', function() {
it('spec 1', function() {
console.log('1');
});
it('spec 2', function() {
console.log('2');
});
it('spec 3', function() {
console.log('3');
});
});
1
.2
.3
.
fdescribe('a test', function() {
it('spec 1', function() {
console.log('1');
});
fit('spec 2', function() {
console.log('2');
});
it('spec 3', function() {
console.log('3');
});
});
2
.
关于 Protractor 如何运行单个测试用例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28887251/
我最近购买了《C 编程语言》并尝试了 Ex 1-8这是代码 #include #include #include /* * */ int main() { int nl,nt,nb;
早上好!我有一个变量“var”,可能为 0。我检查该变量是否为空,如果不是,我将该变量保存在 php session 中,然后调用另一个页面。在这个新页面中,我检查我创建的 session 是否为空,
我正在努力完成 Learn Python the Hard Way ex.25,但我无法理解某些事情。这是脚本: def break_words(stuff): """this functio
我是一名优秀的程序员,十分优秀!