I have the below method:
PUBLIC methodname(WebDriver driver,formEntryMap<String,String>,String Colkey)
{
String Xpath = This will have the xpath of the input text box
inputfieldEntry(driver,Xpath,formEntryMap.get(ColKey));
}
This will read the value from the col
Feature file :
Column | Value|
SuceessNo | 1212 1414 |
Basically, the success 1212 and 1414 should be entered one below the other in the textbox so the input should be :
1212
1414
With the given method can someone give me inputs on how to “n” in this method.
Source: Read More