Introduction to Selenium WebDriver

access_time 2022-06-30T18:31:42.131Z face Bijan Patel
Introduction to Selenium WebDriver Learn more about the Selenium WebDriver Introduction to Selenium WebDriver It consists of following components: Selenium WebDriver – It is an API which allows you to pro-grammatically interact with different browsers the way a real user would. Selenium IDE – It is ...

Getting started with Selenium Webdriver

access_time 2022-06-30T18:28:52.873Z face Bijan Patel
Getting started with Selenium Webdriver Lorem Ipsum is simply dummy text of the printing and typesetting industry. Getting started with Selenium WebDriver WebDriver is made up of following components: – Language Bindings: Selenium provides support to multiple libraries such as Ruby, Python, Java, e...

Handle Dynamic Elements using XPath in Selenium

access_time 2022-06-30T18:25:43.288Z face Bijan Patel
Handle Dynamic Elements using XPath in Selenium Learn how to handle dynamic elements using XPath in Selenium Handle Dynamic Elements using XPath in Selenium 1) contains: WebElement element = driver.findElement(By.xpath("//*[contains(@class,'alert')]")); System.out.println(element.getText()); 2) star...

How to implement Page Object Model (POM) in Selenium?

access_time 2022-06-30T18:19:49.705Z face Bijan Patel
How to implement Page Object Model (POM) in Selenium? Learn how to implement Page Object Model in Selenium How to implement Page Object Model (POM) in Selenium? Example: If an application has 3 pages – Login, Home and Register Page. Then we can create 3 different Page Object classes with all web ele...

How to use Properties Files in Selenium Framework

access_time 2022-06-30T05:58:31.946Z face Bijan Patel
How to use Properties Files in Selenium Automation Framework Learn how to use properties files in Selenium Automation Framework How to use Properties Files in Selenium Automation Framework? What is Properties? It is mainly used to store configuration parameters of an application. Each parameter is s...