In the second video in this Selenium tutorial series we will go over how to locate and interact with elements using Selenium Webdriver via Python. We will also cover how to use the selenium webdriver options to customize how our browser behaves. We will learn this via example, by first logging into reddit and then scraping the post titles off the front page
To find web elements we will use ID, CSS classes, and Xpath. It is typically best to use ID and CSS classes when possible, only resort to using Xpath when other options aren't available. Once we've identified the web element with selenium we will look at some of the available attributes and functions we can use via selenium.
Selenium Tutorial playlist - • Selenium Webdriver Python Tutorial - ...
XPath selenium tutorial - https://www.guru99.com/xpath-selenium...
Selenium docs - https://selenium-python.readthedocs.io/
#selenium #webdriver #python