如何使用参数例如:
@When("^I enter \"([^\"]*)\" in the Keywords textbox$")
public void I_enter_in_the_Keywords_textbox(String Job ) throws Throwable{
driver.findElement(By.id(id)).sendKeys(Job);
}
在文件中我有:
When I enter "<Job>" in the keyword textbox
|Job|
|"QA"|
|"Developer"|
我得到小黄瓜的解析器错误。我尝试使用数据表、列表以及获取不同值的所有可能方式,但 sendkeys 不适用于数组、列表或表格。
任何帮助将不胜感激。