Skip to content

Instantly share code, notes, and snippets.

@Heather-R
Created October 4, 2016 08:23
Show Gist options
  • Save Heather-R/d236aabd165efa54990aad7843c4fb02 to your computer and use it in GitHub Desktop.
Save Heather-R/d236aabd165efa54990aad7843c4fb02 to your computer and use it in GitHub Desktop.
/**
* Locators for the table elements.
*/
public static final By VALUE1COLUMN_HEADER = By.xpath(".//*[@id='sometable']/tbody/tr[1]/td/b");
public static final By VALUE1_TABLEENTRY =By.xpath(".//*[@id='sometable']/tbody/tr[2]/td[1]");
public static final By VALUE1DELETEBUTTON_TABLEENTRY = By.xpath(".//*[@id='sometable']/tbody/tr[2]/td[2]/button");
public static final By VALUE2_TABLEENTRY = By.xpath(".//*[@id='sometable']/tbody/tr[3]/td[1]");
public static final By VALUE2DELETEBUTTON_TABLEENTRY = By.xpath(".//*[@id='sometable']/tbody/tr[3]/td[2]/button");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment