-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
41 lines (37 loc) · 1.19 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from selenium import webdriver
from selenium.webdriver.common.by import By
from info import username, password
import time
from tkinter import *
link = "https://www.instagram.com/"
def start():
driver = webdriver.Firefox()
time.sleep(5)
driver.get("https://www.instagram.com/")
time.sleep(5)
login(driver)
def login(driver):
try:
btn_cookie = driver.find_element(By.XPATH, "// button[contains(text(), 'only allow essential cookies')]")
if btn_cookie:
btn_cookie.click()
time.sleep(10)
except:
time.sleep(5)
username_input = driver.find_element(By.NAME, "username")
username_input.send_keys(username)
password_input = driver.find_element(By.NAME, "password")
password_input.send_keys(password)
btn_login = driver.find_element(By.XPATH, "// div[contains(text(), 'Log in')]")
btn_login.click()
time.sleep(10)
driver.get(link+username)
time.sleep(10)
like(driver)
def like(driver):
btn_like = driver.find_element(By.CSS_SELECTOR, "._aagv")
btn_like.click()
print("done")
time.sleep(5)
driver.close()
start()