Forums

Chromedriver error

hello. I'm just starting to learn Python and I don't understand many things. Can you tell me what the problem is? The path to this file is specified![enter image description here![enter image description here

import schedule import time

def job(): print("I'm working...")

schedule.every(10).minutes.do(job) schedule.every().hour.do(job) schedule.every().day.at("16:15").do(job) schedule.every().monday.do(job) schedule.every().wednesday.at("13:15").do(job) schedule.every().minute.at(":17").do(job)

while True: schedule.run_pending() time.sleep(1)

login = "a0438773"
password = "558228"


from selenium import webdriver
import time

browser = webdriver.Chrome("/home/Shrik558/chromedriver.exe")
browser.get("https://www.instagram.com/")

all = 100

]1 enter image description here

See https://www.pythonanywhere.com/forums/topic/27124/#id_post_78316 for some example code that uses chromedriver correctly.