Skip to content
Advertisement

While working with selenium, an error showed which was saying that ‘import “selenium” couldn’t be resolved.’

I dont’ find a problem in my code and it is showing another problem which is – :

driver = webdriver.Chrome(excutable_path=’C:Program Fileschromedriver.exe’) TypeError: init() got an unexpected keyword argument ‘excutable_path’

JavaScript

Advertisement

Answer

You are using excutable_path instead of executable_path.

try something like this :

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement