Selenium provides the following methods to locate elements in a page: find_element_by_id find_element_by_name find_element_by_xpath find_element_by_link_text find_element_by_partial_link_text find_element_by_tag_name find_element_by_class_name find_e…
Starting with Selenium WebDriver Selenium WebDriver - Introduction & Features How Selenium WebDriver works? Selenium WebDriver Test Cases Running tests on Firefox, IE, Chrome What are Web Elements? Selenium WebDriver Locating Strategies Web Element I…
These days most of the web apps are using AJAX techniques. When a page is loaded to browser, the elements within that page may load at different time intervals. This makes locating elements difficult, if the element is not present in the DOM, it will…
This chapter is a tutorial introduction to page objects design pattern. A page object represents an area in the web application user interface that your test is interacting. Benefits of using page object pattern: Creating reusable code that can be sh…