Missing Functions in Driver – Selenium & Python

Not sure why but a lot of functions are missing for me when I try to use find_element_

For example,

driver.find_element 

does not produce any other functions in VSCode. All of my imports are fine too:

from tkinter import *
from pathlib import Path
import webbrowser
import selenium
from selenium import webdriver
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait 
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By

What am I doing wrong? Tried looking to see if anyone has a similar problem but found nothing. I also read the Selenium documentation, still nothing. Really appreciate any help.

My Chromedriver and version of selenium are both up to date as well.

Read more here: Source link