PhantomJS/CasperJS AssertExists() is failing

≡放荡痞女 提交于 2019-12-12 16:44:05

问题


I am trying to check wether a selector exists in my webpage but casperjs never finds it.

I've tried two approaches:

1. Without waiting

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. Waiting for selector

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

3. Another waiting approach

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();
 });

None of them has been able to find the selector so far. And this selector is loaded from the html, it is not inserted by the javascript.

Any ideas?


回答1:


Well, I think you should check if your selector is in your webpage like that :

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

command -pipe the output-: casperjs test yourFile.js > seePageContent.html

Or you might prefer this way (with a wait if needed) :

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

That way you know if your element is present or not. If not, then your previous step is wrong.



来源:https://stackoverflow.com/questions/23610083/phantomjs-casperjs-assertexists-is-failing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!