我有一个不依赖 jquery 的 Web 应用程序。
感谢(伟大的:))casperjs,我正在做功能测试。
现在我想在我的测试中使用 jquery。因此,我尝试按照此处http://casperjs.org/faq.html#faq-jquery的指示注入它。好吧,它不工作。
如果你能帮助我,这是我的代码 - 有什么问题吗?:
casper.start('http://localhost:8080/xxxxxx/xxxxxDialogTests.html');
casper.echo("page = " + casper.page); // -> it works, the page is there
casper.page.injectJs("../tools/jquery-1.7.2.js");
casper.waitFor(function check()
{
return this.visible('#button_create');
},
function then()
{
this.click('#button_create');
casper.waitFor(function check()
{
return this.visible('#dialog_document_name');
},
function then()
{
console.log("element : ", this.evaluate(function ()
{
var el = $("input#dialog_document_name");
return el;
}));
});
});
我删除了测试,因为这不是重点......
谢谢!