The problem is that you try to use chrome()
function but it is in fact a sub-module, what you want to do is call the Chrome()
function (notice the capital letter), so your code would look like this:
path = "C:\Program Files (x86)\Common Files\chromedriver.exe"
driver = webdriver.Chrome(path)
driver.get("https://techwithtim.net")
CLICK HERE to find out more related problems solutions.