错误:无法在不存在的选择器上调度mousedown事件:xpath选择器:

时间:2018-12-17 10:18:18

标签: angularjs node.js npm casperjs node-modules

我是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");
});

Please see the error in terminal

0 个答案:

没有答案