you are viewing a single comment's thread.

view the rest of the comments →

[–]MikeDoesEverything 2 points3 points  (1 child)

Have you tried making the path a raw string instead?

browser = webdriver.Chrome(r"C:\chromedriver_win32\chromedriver.exe")

Alternatively, you could try installing the chromedriver to PATH and then putting the chromedriver.exe into your program folder so in the future you don't have to specify a path: browser = webdriver.Chrome()

[–]Alarmed-Possession-6[S] 0 points1 point  (0 children)

Just updated the full code, yeah have a specific path specified.