我一直在尝试测试网页以查看功能是否有效。我尝试这样做的方法是将 getFormValues 的输出与功能确实有效的字符串进行比较。我写了以下任务来检查:
casper.then(function seeifsaveworked() {
if (this.getFormValues('.tf-field-inner') === 'foobar') {
this.echo("SUCCESS: The site description has been successfully changed, so the save did work", 'INFO');
} else {
this.echo("ERROR: The save attempt didn't work successfully, something is wrong with your connection or the page isn't functioning properly.", "ERROR");
this.die();
};
});
当我运行脚本时,我得到一个解析错误,因为该代码的某些内容在语法上不正确。我不知道为什么它不正确,以及是否有人可以解决语法错误以及我需要做些什么来完成绝对了不起的原始任务。
谢谢