作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
据我所知,open()
和 waitFor()
需要将以下步骤包装在 then()
中:
casper.click(x('//button[text()="Login"]'));
casper.waitForSelector(x('//span[text()="Navigation"]]'));
casper.capture('1.png');
casper.then(function () {
casper.capture('2.png'); // Only this shows the navigation
});
当我有多个 waitFor()
步骤时,我需要自己链接它们还是它们自己链接?
casper.click(x('//button[text()="Login"]'));
casper.waitForSelector(x('//span[text()="Navigation"]]'));
casper.waitWhileSelector(x('//span[text()="Loading"]]'));
casper.then(function () {
casper.capture('1.png'); // Under which condition will this be executed?
});
最佳答案
casper.wait*
函数的步骤与 casper.then
相同。所以它们不需要被包裹在then
中。如果您这样做,请记住,wait*
的内部步骤将在更高(分层)级别的所有其他步骤之后添加到队列中。
第二个代码的执行方式与描述的相同。 wait*
函数会等待。
关于javascript - 我是否需要在 then() 中包含进一步的 waitFor() 步骤?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20587958/
我有这个: const {ops} = getOplogStreamInterpreter(strm); ops.del.subscribe(v => { console.log('delete
我四处搜索,据我所知,POST 表单请求已被限制为 10MB (http://golang.org/src/net/http/request.go#L721)。 如果我要在我的 ServeHTTP 方
我是一名优秀的程序员,十分优秀!