We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Can you update Xpaths in script?
The text was updated successfully, but these errors were encountered:
button_login = webdriver.find_element(By.XPATH, '/html/body/div[2]/div/div/div[2]/div/div/div/div/section/main/article/div[2]/div/div[2]/form/div/div[3]/button/div') button_login.click() sleep(3)
account_name="vucongtuan2810" # Change this to your own Instagram username account_password="Anhyeuem1" # Change this to your own Instagram password
username = webdriver.find_element(By.XPATH, '/html/body/div[2]/div/div/div[2]/div/div/div/div/section/main/article/div[2]/div/div[2]/form/div/div/div/label/input') username.send_keys(account_name) password = webdriver.find_element(By.XPATH, '/html/body/div[2]/div/div/div[2]/div/div/div/div/section/main/article/div[2]/div/div[2]/form/div/div[2]/div/label/input') password.send_keys(account_password)
button_login = webdriver.find_element(By.XPATH, '//html/body/div[2]/div/div/div[2]/div/div/div/div/section/main/article/div[2]/div/div[2]/form/div/div[3]/button/div') button_login.click() sleep(3)
Sorry, something went wrong.
Estayparadox
No branches or pull requests
Can you update Xpaths in script?
The text was updated successfully, but these errors were encountered: