1

如果我想使用 tester API,并使用 say assertSelectorExists,我该如何 waitFor 选择器?我知道您可以使用 waitForSelector 的 onTimeout 回调并在其中手动创建一条消息,但这似乎违背了能够断言的目的......

4

1 回答 1

5

像这样的东西?

casper.waitForSelector('#my-selector', function() {
    this.test.pass('selector found');
}, function() {
    this.test.fail('selector was not found');
});
于 2013-01-07T13:27:28.657 回答