from urllib.parse import quote_plus
from bs4 import BeautifulSoup
from selenium import webdriver
baseUrl = 'https://www.google.com/search?q='
plusUrl = input('무엇을 검색할까요? :')
url = baseUrl + quote_plus(plusUrl)
driver = webdriver.chrome()
driver.get(url)
File "c:/Users/JunDragon/Desktop/PythonWorkspace/pyauto/google.py", line 9, in <module> driver = webdriver.chrome() TypeError: 'module' object is not callable
그안에 크롬 드라이버가 있는데
이라는 에러가 뜨는데 어떻게 해결하나요 ?