Using Marathon to test a java application, I have a handful of rows and I want to commit some operations on a specific row that has certain text in one of its fields.
How would I go about searching for it and then selecting it to use it in Marathon or JRuby?
For example, I want to find the text "HERE" in a row, right click that row, and click one of the options provided.
There are two ways you can do this.
You can fall back to
WebDriverinterfaces and use find_elements.Use text property and access the cell directly
In (2) you can use
selectinstead ofget_componentto set the value of the cell (if the cell is editable etc.)