Jump to content

Good Day,

right now i trying to test some features on my private Website, so i need a bot to open chrome. I found a video tutorial online explaining how to do this with Anaconda IDE and Selenium Python. Thats my code so far (i expect it to open a chrome tab):

 

from selenium import webdriver as wd
import chromedriver_binary
#Treiber holen
wd = wd.Chrome()
wd.implicity_wait(10)
#Chrome oeffnen

 

but it has a problem with wd = wd.Chrome()

 

The error that it is showing is "Webdriver Exception"

Link to comment
https://linustechtips.com/topic/1341411-opening-chrome-via-selenium/
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×