Advertisement
Guest User

Untitled

a guest
Aug 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. def __init__(self, app):
  2. from fixture.application import Application
  3. self.app: Application = app
  4. self.wd = app.wd
  5.  
  6. def open_contact_to_edit_by_index(self, index):
  7. self.navigate_to_homepage()
  8. self.wd.find_elements_by_xpath("//a[./img[@title='Edit']]")[index].click()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement