TypeError: get() missing 1 required positional argument: 'url'

500 Views Asked by At

Executing below code:

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
browser  = webdriver.Chrome

browser.get('https://soysocio.bocajuniors.com.ar/index.php')

Error:

[line 7] TypeError: get() missing 1 required positional argument: 'url'

How can i solve it? Thank you

3

There are 3 best solutions below

0
On

You forgot to execute the Chrome driver.

browser = webdriver.Chrome('/path/to/chromedriver') # Optional argument, if not specified will search path.

You can find examples of how Chrome driver used here

0
On

you should change webdriver.Chrome to webdriver.Chrome()

Chrome is a class, not an instance.

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
browser  = webdriver.Chrome()

browser.get('https://soysocio.bocajuniors.com.ar/index.php')
0
On
browser  = webdriver.Chrome

browser should be instantiation

browser  = webdriver.Chrome()