我现在可以在“AM' AM'出现在网站上。如果我需要“AM'或者' PM'触发行动。
casper.waitForText('AM', function() {
this.echo('found AM');
//do stuff
});
答案 0 :(得分:1)
casper.waitForText()
也支持正则表达式:
casper.waitForText(/[AP]M/, function(){
this.echo('found [AP]M');
});