编程语言
首页 > 编程语言> > javascript-PhantomJS / CasperJS AssertExists()失败

javascript-PhantomJS / CasperJS AssertExists()失败

作者:互联网

我正在尝试检查网页中是否存在选择器,但是casperjs找不到它.

我尝试了两种方法:

1.不用等待

casper.then(function() {
    // search for 'casperjs' from google form
    this.test.assertExists('#search-form', 'the element exists');
    // this.test.assertExists('.glyphicon.glyphicon-plus', 'the element exists');
});

2.等待选择器

casper.waitForSelector('#search-form', function() {
    this.echo("I'm sure #search-form is available in the DOM");
});

3.另一种等待方法

casper.waitFor(function check() {
     return this.evaluate(function() {
         return $('#search-form').length == 1;
     });
 }, function then() {    // step to execute when check() is ok
     test.assertExists('#search-form', 'tabs area is found');
 }, function timeout() { // step to execute if check has failed
     this.echo("Timeout: page did not load in time...").exit();
 });

到目前为止,他们还没有找到选择器.并且此选择器是从html加载的,不是由javascript插入的.

有任何想法吗?

解决方法:

好吧,我认为您应该检查选择器是否在您的网页中,例如:

casper.then(function(){
    console.log(this.getPageContent());
});

命令-pipe输出-:casperjs测试yourFile.js> seePageContent.html

或者,您可能更喜欢这种方式(如果需要,请稍候):

casper.then(function(){
    this.wait(3000,function(){
        var fs = require('fs');
        fs.write("seePageContent.html", this.getPageContent(), 'w');
    });
});

这样,您就知道您的元素是否存在.如果不是,则您的上一步是错误的.

标签:phantomjs,jquery-selectors,casperjs,javascript,jquery
来源: https://codeday.me/bug/20191121/2054111.html