<i>
@FindAll(@FindBy(xpath = ".//input[contains(@name,'adv_xfer_fields')
and contains(@name,'::amounts')]"))
List <WebElement> amounts;
</i>
I have dynamic web-table in the input field, Ideally I need to pass value to this. But I'm not sure how to implement this?
public List<WebElement> getAllAmounts() {
return amounts;
}
Please help