我使用CasperJS来阅读某个网页。我想要做的是在CasperJS中加载一个网页。然后,等待某个HTML元素具有特定文本。
所以我喜欢这样做:
var casper = require('casper').create();
casper.start('http://www.example.com/somepage', function() {
this.echo('Home page opened');
});
// wait for text based on a CSS selector
casper.waitForText('.someCssClass', 'dolor sit', function() {
this.echo('found title!');
});
// when text is eventually found, then continue with this
casper.then(function() { ... } );
casper.run();
所以我想使用waitForText
,但使用CSS
选择器。这样它就可以监视certaim HTML元素中的一段文本。如果可能的话,这对我来说并不是很明显。
这可以在CasperJS中完成吗?如果是这样,我该怎么做?
答案 0 :(得分:7)
以下函数从waitForText()
function获取一些逻辑并将其与waitForSelector()
配对:
var utils = require("utils");
casper.waitForSelectorText = function(selector, text, then, onTimeout, timeout){
this.waitForSelector(selector, function _then(){
this.waitFor(function _check(){
var content = this.fetchText(selector);
if (utils.isRegExp(text)) {
return text.test(content);
}
return content.indexOf(text) !== -1;
}, then, onTimeout, timeout);
}, onTimeout, timeout);
return this;
};
将此代码放在脚本的前面,并像使用任何其他CasperJS函数一样使用该函数。 text
可以是字符串或正则表达式,选择器也可以是XPath表达式(使用辅助函数)。