在CasperJS中有没有和Playwright等价的waitForResource?如何使用Playwright编写下面的代码?
casper.waitForResource(function test(resource) {
return resource.url.indexOf("submit") > -1;
}
在CasperJS中有没有和Playwright等价的waitForResource?如何使用Playwright编写下面的代码?
casper.waitForResource(function test(resource) {
return resource.url.indexOf("submit") > -1;
}
1条答案
按热度按时间jtw3ybtb1#
可以使用
page.waitForRequest()
:这将暂停执行,直到发出在其URL中包含字符串“submit”的请求。