我正在使用 casperjs,以下是代码
var casper = require('casper').create();
var x = require('casper').selectXPath;
casper.start('http://google.co.in/', function() {
// search for 'casperjs' from google form
this.test.assertExists(x('//*[@type="text"]'), 'the element exists');
});
casper.run(function() {
// echo results in some pretty fashion
this.echo('').exit();
});
尽管有很多,但它无法找到任何属性类型为文本的元素。
这是我得到的输出
FAIL the element exists
# type: assertExists
# subject: false
# selector: {"type":"xpath","path":"//*[@type=\"text\"]"}