Skip to content

Instantly share code, notes, and snippets.

@Heather-R
Created October 12, 2016 16:11
Show Gist options
  • Save Heather-R/869ba443789df640b8af48d38a213c33 to your computer and use it in GitHub Desktop.
Save Heather-R/869ba443789df640b8af48d38a213c33 to your computer and use it in GitHub Desktop.
@FindBy(how = How.ID, using = "sometable")
private WebElement someTable;
/**
* Get column headings for the Studies table.
*/
public List<String> getTableColumnHeaders() {
Table allSomeTable = new Table(someTable);
return allSomeTable.readAllColumnHeaders();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment