-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not even click anything #2
Comments
since class name is changing every time you open the form you have to use xpath instead, replace By.NAME -> By.XPATH and put the xpath of the button
next_button = driver.find_element(By.XPATH,"/html/body/div[1]/div[1]/div[2]/c-wiz/div/div[3]/div/div/div/div/button")
next_button = driver.find_element(By.XPATH, "/html/body/div[1]/div[1]/div[2]/c-wiz/div/div[3]/div/div/div/div/button")
next_button = driver.find_element(By.XPATH, "/html/body/div[1]/div[1]/div[2]/c-wiz/div/div[3]/div/div[1]/div/div/button")
next_button = driver.find_element(By.XPATH, "/html/body/div[1]/div[1]/div[2]/c-wiz/div/div[3]/div/div/div/div/button") for some reason the skip button for phone verification doesn't exist so basically i can't pass this step |
Hi guys, remember that this script is subject to the google robot detection systems, so if the system detects the script as robot activity it will force you to verify that you're human. So there will be no skip button and the scripts ends here. I am still thinking if there is a possible way to let the script create emails in a virtual env so it can not be detected as the same process repeated. |
Like that? --> https://www.reddit.com/r/google/comments/18pa5v7/google_removed_the_option_to_skip_the_phone/ Only plausibility way is avoiding Google detection via IP changes without caches and cookies. |
Not sure which class name to change. It just fills the name and that's it.
The text was updated successfully, but these errors were encountered: