有没有办法绕过谷歌手机号码验证来创建一个账户?我已经写了几行Python代码来创建一个google帐户……有没有办法制作一个临时的python电话号码来接收短信之类的信息?
代码
ctr_btn = driver.find_element_by_xpath("//*[@id='view_container']/div/div/div[2]/div/div[2]/div/div[2]/div/div/div[1]/div/button/span")
ctr_btn.click()
time.sleep(0.07)
myself_ctr = driver.find_element_by_xpath("//*[@id='view_container']/div/div/div[2]/div/div[2]/div/div[2]/div/div/div[2]/div/ul/li[1]")
myself_ctr.click()
ftr_name = driver.find_element_by_xpath("//*[@id='firstName']")
ftr_name.send_keys("Anon")
lst_name = driver.find_element_by_xpath("//*[@id='lastName']")
lst_name.send_keys("Anon")
cng_email = driver.find_element_by_xpath("//*[@id='view_container']/div/div/div[2]/div/div[1]/div/form/span/section/div/div/div[2]/div[3]/div/div/button/span")
cng_email.click()
email_txt_box = driver.find_element_by_xpath("//*[@id='username']")
email_txt_box.send_keys(ran)
passwd_one = driver.find_element_by_xpath("//*[@id='passwd']/div[1]/div/div[1]/input")
passwd_one.send_keys(passwd)
passwd_confirm = driver.find_element_by_xpath("//*[@id='confirm-passwd']/div[1]/div/div[1]/input")
passwd_confirm.send_keys(passwd)
next_form = driver.find_element_by_xpath("//*[@id='accountDetailsNext']/div/button/span")
next_form.click()模块
import os, sys, time
import base64
from selenium import webdriver
from selenium_stealth import stealth
import random
import string发布于 2021-08-26 10:39:26
使用selenium很难绕过手机验证。您可以使用类似proovl的内容创建一个临时电话号码。有关更多信息,请查看此视频:https://www.youtube.com/watch?v=EGoLbmQGimc
发布于 2021-08-26 10:43:28
没有办法绕过这一点,除非你在一个干净的浏览器上创建了帐户,它不会要求你提供电话号码。
https://stackoverflow.com/questions/68936939
复制相似问题