- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近开始使用 CasperJS 测试一段 JavaScript,它插入一个按钮并在页面上执行一些 AJAX 请求。我在代码中看到但在文档中的示例中没有看到的是,CasperJS 似乎在每一步都重新加载原始页面。
这类似于我的代码:
var casper = require('casper').create({
clientScripts: ['MyScript.js'],
verbose: true,
logLevel: "debug"
});
casper.on('remote.message', function(msg) {
this.log('Remote console message: ' + msg, 'warning');
});
casper.userAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36');
casper.start('http://www.wikipedia.org');
casper.then(function(){
if (this.exists('div#my_btn')){
this.click('#my_btn');
this.capture('wikipedia.png', undefined, {
format: 'jpg',
quality: 75
});
this.waitFor(function check() {
return this.evaluate(function() {
return this.getHTML('div#my_btn_status').length > 0;
}, function then() {
this.echo('Key: ' + this.getHTML('div#my_btn_status'));
});
});
} else {
this.log('My btn not here', 'error');
}
});
casper.run();
这些是我得到的日志:
[info] [phantom] Starting...
[info] [phantom] Running suite: 3 steps
[debug] [phantom] opening url: http://www.wikipedia.org/, HTTP GET
[debug] [phantom] Navigation requested: url=http://www.wikipedia.org/, type=Other, willNavigate=true, isMainFrame=true
[debug] [phantom] url changed to "http://www.wikipedia.org/"
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=false
[debug] [phantom] Automatically injected MyScript.js client side
[debug] [phantom] Successfully injected Casper client-side utilities
[debug] [phantom] start page is loaded
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=false
[debug] [phantom] Automatically injected MyScript.js client side
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=false
[debug] [phantom] Automatically injected MyScript.js client side
[info] [phantom] Step anonymous 3/3 http://www.wikipedia.org/ (HTTP 200)
[debug] [phantom] Mouse event 'mousedown' on selector: #my_btn
[debug] [phantom] Mouse event 'mouseup' on selector: #my_btn
[debug] [phantom] Mouse event 'click' on selector: #my_btn
[debug] [phantom] Capturing page to /Users/Me/Documents/Casper/wikipedia.png
[info] [phantom] Capture saved to /Users/Me/Documents/Casper/wikipedia.png
[info] [phantom] Step anonymous 3/3: done in 845ms.
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=false
[debug] [phantom] Automatically injected MyScript.js client side
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=false
[debug] [phantom] Automatically injected MyScript.js client side
[info] [phantom] Step _step 4/4 http://www.wikipedia.org/ (HTTP 200)
[info] [phantom] Step _step 4/4: done in 919ms.
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=false
[debug] [phantom] Automatically injected MyScript.js client side
... (The above two lines get repeated a ton)
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=false
[debug] [phantom] Automatically injected MyScript.js client side
[warning] [phantom] Casper.waitFor() timeout
[error] [phantom] Wait timeout of 5000ms expired, exiting.
Wait timeout of 5000ms expired, exiting.
当单击 #my_btn 时,MyScript.js 会执行更新 #my_btn_status 的 AJAX 请求。
正如你所看到的,页面似乎不断重新加载,MyScript.js不断被注入(inject),因此我永远无法看到#my_btn_status的内容,因为#的状态my_btn 在页面加载时不断重置。
我正在使用以下命令运行脚本:
casperjs --ignore-ssl-errors=true casper_test.js
编辑:我进一步考虑了这一点,我认为了解 MyScript.js 除了 #my_btn 之外还向页面注入(inject) iframe 可能会很有用。 casperjs 是否有可能不断将 MyScript.js 注入(inject)到每个子 iframe 中,这将解释 url=about:blank, isMainFrame=false?
最佳答案
首先,您在单击按钮的同时捕获图像,因此您的屏幕不包含更新。
其次,您使用 getHTML() :一个 casper 函数,在页面 DOM 环境中(由于评估函数),该函数是未知的。不要混淆这两个上下文。这里是在远程 DOM 环境中注入(inject)的 casper 函数:http://casperjs.readthedocs.org/en/latest/modules/clientutils.html .
第三,您的 waitFor() 已过期,因为 check() 闭包永远不会为 true。由于 getHTML() 函数未知,所以这不可能是真的。奇怪的是你没有来自远程消息事件的错误,但我不认为 getHTML() 存在于纯 JS 中......
所以你不需要使用evaluate(),getHTML()是一个casper函数,留在casper上下文中。
之后;你的条件 getHTML('').length 很奇怪:你返回了 html,所以没有方法 'length' 链接到你的选择器的 html 内容。您希望哪个条件为真?
当您单击按钮时,另一个元素('div#my_btn_status')的内容是否会增加?
这里有一个更好的结构:
casper.then(function(){
if (this.exists('div#my_btn')){
this.click('#my_btn');
this.waitFor(function check() {
return this.fetchText('div#my_btn_status')==='1';
}, function then() {
this.echo('Key: ' + this.getHTML('div#my_btn_status'));
this.capture('wikipedia.png');
});
});
} else {
this.log('My btn not here', 'error');
}
});
我考虑过单击按钮将“div#my_btn_status”的内容增加 1。这是一个例子。也许解析 int 中的字符串是必要的。 (解析Int)
关于javascript - 使用注入(inject)脚本在每个步骤请求 CasperJS 导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23111219/
我已阅读有关依赖注入(inject)的信息。然后来了 构造函数注入(inject), setter/getter 注入(inject) 二传手注入(inject) 接口(interface)注入(in
我正在研究依赖注入(inject)模式。我看过很多例子,其中一个典型的例子是使用 XxxService/XxxRepository 作为例子。但是在我看来,按照UML的概念,类XxxRepositor
我开始使用 Google Guice。 我有一个简单的问题: javax.inject 的 @Inject 注释和 com.google.inject 的 有什么区别@Inject 一个 ? 谢谢。
当使用构造函数注入(inject)工厂方法时,依赖的属性不会得到解析。但是,如果在解析依赖的组件之前解析了工厂方法,则一切都会按预期工作。此外,当仅使用属性注入(inject)或构造函数注入(inje
我有这样的事情: class Root { public Root(IDependency dep) {} } class Dependency:IDependency { p
听完Clean Code Talks ,我开始明白我们应该使用工厂来组合对象。因此,例如,如果 House有一个 Door和 Door有一个 DoorKnob , 在 HouseFactory我们创建
情况:我需要在一些 FooClass 中进行惰性依赖实例化,所以我通过 Injector类作为构造函数参数。 private final Injector m_injector; public Foo
在编写代码时,我们应该能够识别两大类对象: 注入(inject)剂 新品 http://www.loosecouplings.com/2011/01/how-to-write-testable-cod
这个问题是关于 Unity Container 的,但我想它适用于任何依赖容器。 我有两个具有循环依赖关系的类: class FirstClass { [Dependency] pub
如果我有 10 个依赖项我需要注入(inject)并且不想在构造函数中有 10 个参数,我应该使用哪种注入(inject)模式? public class SomeClass { privat
我在使用 Angular2 DI 时遇到了问题。我尝试将一个类注入(inject)另一个类,它引发了以下错误: 留言:"Cannot resolve all parameters for 'Produ
对依赖注入(inject)还很陌生,我想弄清楚这是否是一种反模式。 假设我有 3 个程序集: Foo.Shared - this has all the interfaces Foo.Users -
我正在尝试了解 Angular 14 的变化,尤其是 inject()我可以将模块注入(inject)功能的功能,我不需要为此创建特殊服务..但我想我弄错了。 我正在尝试创建一些静态函数来使用包 ng
希望这个问题不是太愚蠢,我试图掌握更高级的编程原理,因此试图习惯使用 Ninject 进行依赖注入(inject)。 因此,我的模型分为几个不同的 .dll 项目。一个项目定义了模型规范(接口(int
我最近一直在大量使用依赖注入(inject)、测试驱动开发和单元测试,并且开始喜欢上它。 我在类中使用构造函数依赖,这样我就可以为单元测试注入(inject)模拟依赖。 但是,当您实际需要生产环境中的
我有下面的代码来使用 Guice 进行依赖注入(inject)。第一个是使用构造函数注入(inject),而另一个是直接在字段上方添加 @Inject。这两种方式有什么区别吗? Guice官网似乎推荐
这个问题在这里已经有了答案: Angular2 Beta dependency injection (3 个答案) 关闭 7 年前。 我正在使用 angular2 测试版。并在使用 @Inject
有没有可能做这样的事情? (因为我尝试过,但没有成功): @Injectable() class A { constructor(private http: Http){ // <-- Injec
我很恼火必须通过 Constructor 传递管道对象,因为我想为业务实体或要传递的值保留构造函数参数。 所以我想通过 setter ,但只要这些 setter 没有被填充,我的包含依赖项的对象就不应
假设我有这个: SomePage.razor: @inject Something something @page "/somepage" My Page @code { // Using
我是一名优秀的程序员,十分优秀!