我想知道使用casperjs时如何在URL之间切换:例如,我有
casper.test.begin('Story', function suite(test) {
casper.start("http://localhost:8000/", casper.entryPointOne);
// POINT - P
casper.run(function() {
test.done();
});
});
现在,如果在POINT-p(在上面的代码中),我想访问完全不同的url:例如,我想要访问www.gooogle.com,这可能吗?
我需要这个来测试一个场景,在这个场景中,我们访问一个"设置"页面,保存新设置,进入新的UrL(比如谷歌),然后使用这些设置。
这里的问题是,在保存设置后,我开始了一个新的测试,它使用默认设置,而不使用新设置。
知道怎么做吗?
使用thenOpen打开后续url。
casper.test.begin('Story', function suite(test) {
casper.start("http://localhost:8000/", casper.entryPointOne);
// POINT - P
casper.thenOpen('http://www.noobmovies.com')
casper.run(function() {
test.done();
});
});