Created
February 29, 2020 22:11
-
-
Save teal33t/a2c638bf7462bf00a031ae47d621796d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
self.log("Click") | |
check_box.click() | |
self.log("Wait") | |
self.wait_between(MIN_RAND, MAX_RAND) | |
action = ActionChains(driver); | |
self.human_like_mouse_move(action, check_box) | |
self.log("Switch") | |
driver.switch_to.default_content() | |
iframes = driver.find_elements_by_tag_name("iframe") | |
driver.switch_to.frame(iframes[1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment