I'm very new to Python and I'm trying to follow along with a video on web scraping with Selenium. In the video, the person walking through how to do this has a whole bunch of different possible methods of finding an element on a web page. He is trying to identify a button on the page using an xpath.
However, when I am trying to do this, I have only two options (as seen below). Attempting to just use the same code to find the element by it's xpath simply doesn't work. I get an error that says
AttributeError: 'WebDriver' object has no attribute 'find_elements_by_xpath'
What am I doing wrong here? Do I need to do something to be able to access these?