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
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