(self, xpath)
| 188 | ctypes.windll.kernel32.SetConsoleTitleW(arg) |
| 189 | |
| 190 | def wait_for_xpath(self, xpath): |
| 191 | while True: |
| 192 | try: |
| 193 | f = self.driver.find_element('xpath', xpath) |
| 194 | return True |
| 195 | except selenium.common.exceptions.NoSuchElementException: |
| 196 | pass |
| 197 | |
| 198 | if __name__ == "__main__": |
| 199 | obj = zefoy() |