(browser, xpath)
| 33 | |
| 34 | |
| 35 | def check_exists_by_xpath(browser, xpath): |
| 36 | try: |
| 37 | browser.find_element(By.XPATH, xpath) |
| 38 | except NoSuchElementException: |
| 39 | return False |
| 40 | return True |
| 41 | |
| 42 | |
| 43 | def remove_duplicates_preserving_order(seq): |
no outgoing calls
no test coverage detected