Gmail-Creation-Automation-Python
Gmail-Creation-Automation-Python copied to clipboard
Does not even click anything
Not sure which class name to change. It just fills the name and that's it.
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
- name next 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")
- basic information next 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")
- gmail address next 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")
- password next 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.
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.