私は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\"]"}