-
-
Notifications
You must be signed in to change notification settings - Fork 43
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
mobile verification problem #7
Comments
@rebazjabar do you try it? |
I tried a mobile emulation and I couldn't get it to display a skip option. `# Gmail Account Creation Automation Script - Version 1.1.0 Original script by Abdelhakim Khaouiti (khaouitiabdelhakim on GitHub)Account Creation Automation Script - Version 1.1.0Original script by Abdelhakim Khaouiti (khaouitiabdelhakim on GitHub)from selenium import webdriver Chrome optionschrome_options = ChromeOptions() Add mobile emulationmobile_emulation = { Use webdriver_manager to handle ChromeDriverdriver = webdriver.Chrome( def get_next_account_number():
def save_account_credentials(username, password): Replace the random number generation with sequential numberingaccount_number = get_next_account_number() your_birthday = "02 3 1989" #dd m yyyy exp : 24 11 2003 french_first_names = [ french_last_names = [ Randomly select a first name and a last nameyour_first_name = random.choice(french_first_names) your_first_name_normalized = unidecode(your_first_name).lower() def random_delay(min_seconds=2, max_seconds=4): def fill_form(driver):
Execute the function to fill out the formfill_form(driver) |
I tried this but i think it has no way to show skip button. |
i think if you can switch the web browser to mobile brower the problem will be fix because the mbile browser has skip option
The text was updated successfully, but these errors were encountered: