FitNesse スクリプトを実行すると、「The instance scriptTableActor. does not exist」エラーが発生します。このエラーの意味を説明できる人はいますか?
私は日食でフィクスチャを作成しました:
/**
* To enter text or numbers in a text field, add this row to your FitNesse script table:
* <html> <br/> <br/>
* | Enter value xpath | value | in field |fieldXpath |
* <br/> <br/>
* </html>
* tags: setter
* @param fieldXpath the field xpath assigned to the target field
* @param input the characters to be entered
* @return true if text entered successfully
*/
public boolean EnterValueInFieldByXpath(String xpath, String value) {
try {
println "in the EnterValueInFieldByXpath method "
WebElement e = driver.findElement(By.xpath(xpath))
e.clear()
e.sendKeys(value)
return true
} catch (Exception e) {
println "apparently did not find the $xpath Link: ${e}"
return false
}
}
FitNesse コマンドでこのフィクスチャを使用すると、このようなエラーが発生します。
ガイドしてください。