How to Locate UI Elements (WebElements) in Selenium
To Locate UI elements in Selenium each of the language bindings expose a “Find Element” and “Find Elements” method. The first returns a WebElement object otherwise it throws an exception. The latter returns a list of WebElements, it can return…