Update the method summary

This commit is contained in:
Michael Mintz 2017-04-05 00:27:07 -04:00
parent f9dcf011b9
commit 12b1feb157
1 changed files with 15 additions and 0 deletions

View File

@ -23,6 +23,12 @@ self.get_text(selector, by=By.CSS_SELECTOR, timeout=settings.SMALL_TIMEOUT)
self.get_attribute(selector, attribute, by=By.CSS_SELECTOR,
timeout=settings.SMALL_TIMEOUT)
self.get_current_url()
self.get_page_source()
self.get_image_url(selector, by=By.CSS_SELECTOR, timeout=settings.SMALL_TIMEOUT)
self.add_text(selector, new_value, timeout=settings.SMALL_TIMEOUT)
self.send_keys(selector, new_value, timeout=settings.SMALL_TIMEOUT)
@ -88,6 +94,15 @@ self.hover_and_click(hover_selector, click_selector,
hover_by=By.CSS_SELECTOR, click_by=By.CSS_SELECTOR,
timeout=settings.SMALL_TIMEOUT)
self.pick_select_option_by_text(dropdown_selector, option,
dropdown_by=By.CSS_SELECTOR, timeout=settings.SMALL_TIMEOUT)
self.pick_select_option_by_index(dropdown_selector, option,
dropdown_by=By.CSS_SELECTOR, timeout=settings.SMALL_TIMEOUT)
self.pick_select_option_by_value(dropdown_selector, option,
dropdown_by=By.CSS_SELECTOR, timeout=settings.SMALL_TIMEOUT)
########
self.wait_for_element_present(selector, by=By.CSS_SELECTOR,