(driver)
| 145 | |
| 146 | |
| 147 | def is_jquery_activated(driver): |
| 148 | try: |
| 149 | execute_script(driver, "jQuery('html');") # Fails if jq is not defined |
| 150 | return True |
| 151 | except Exception: |
| 152 | return False |
| 153 | |
| 154 | |
| 155 | def wait_for_jquery_active(driver, timeout=None): |
no test coverage detected
searching dependent graphs…