jess如何修复此错误?

时间:2016-05-23 11:26:26

标签: jess

Jess在例行电话中报告错误

 while executing (call ?fopc charAt ?index)
 while executing (bind ?c (call ?fopc charAt ?index))

 Message: Called method threw an exception.

该计划是:

enter image description here

1 个答案:

答案 0 :(得分:0)

如果要调用Java方法charAt,则可能有两个原因导致异常。

  1. var key = require('selenium-webdriver').Key; var actionSequence = require('selenium-webdriver').ActionSequence; new actionSequence(driver).keyDown(key.CONTROL).sendKeys(key.TAB).perform().then(function(){ console.log("Done selection?"); }); 未绑定到对象java.lang.String(或其中定义了?fopc的其中一个类)。
  2. 第三个参数charAt不小于字符串的长度或负数。
  3. 提供一个完整的Jess示例 - 请不要链接 - 重现错误。