'sign up in Instagram with python
Is there any way to signup to Instagram with Python selenium/requests or anything else? I've used selenium before but can't even select drop down lists in HTML for date of birth!
Solution 1:[1]
I will give you a hint, first click on the dropdown list with:
driver.find_element(By.XPATH, 'dropdown list xpath').click()
and then you will be able to see the date html and select/click on it, repeat for day month and year
If you can't find the dropdown list html, inspect element, click on the mouse on a box icon and click on the dropdown list, it will automatically show you the html code position. Then you can also right-click, copy and then copy XPATH to directly get the xpath.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | xtekky |
