Skip to content
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

Open
kr4k0n opened this issue Apr 8, 2024 · 3 comments
Open

Does not even click anything #2

kr4k0n opened this issue Apr 8, 2024 · 3 comments

Comments

@kr4k0n
Copy link

kr4k0n commented Apr 8, 2024

image

Not sure which class name to change. It just fills the name and that's it.

@BlueGob
Copy link

BlueGob commented Apr 12, 2024

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

@khaouitiabdelhakim
Copy link
Owner

khaouitiabdelhakim commented Apr 13, 2024

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.

@kr4k0n
Copy link
Author

kr4k0n commented Apr 16, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants