我是casperJs的新手,在以下代码下运行时出现错误- 我正在尝试使用CasperJS测试我的项目
错误:无法在不存在的选择器上调度mousedown事件:xpath选择器: TypeError:尝试更改不可配置属性的设置器。
casper.thenOpen(basePath+"publications/"+pressroomId ,function() {
test.assertTextExists('Youtube', 'page body contains Youtube');
test.assertTextExists('Contact', 'page body contains Contact');
});
casper.then(function() {
this.clickLabel('Youtube');
});
casper.then(function() {
//test.assertTextExists(tempProfile.accountTitle+' - Youtube', 'page body contains: '+tempProfile.accountTitle+' - Youtube');
test.assertTextExists('Contact', 'page body contains Contact box');
test.assertUrlMatch(/videos/, "url shows its videos page");
});