Selenium

Download Selenium JARs and Configure in Eclipse — step-by-step DevOps tutorial on Progressive Robot

Download Selenium JARs and Configure in Eclipse

Selenium provides its API implementation in multiple programming languages. However, Selenium API Java-based bindings are the most popular. In this tutorial, we will learn how to download Selenium JARs and configure Eclipse IDE to use them in writing test scripts. To configure Eclipse with Selenium WebDriver, we need to perform the following activities: Installing Java […]

Read more
Running Test on Selenium Chrome Driver — step-by-step DevOps tutorial on Progressive Robot

Running Test on Selenium Chrome Driver

URL: https://www.progressiverobot.com/running-test-on-selenium-chrome-driver/ Chrome browser implements the WebDriver protocol by using an executable file called _ChromeDriver.exe._ This executable file starts a server on your system and all your tests will communicate to this server in order to run your tests. In this article, we will learn- How to download the latest version of Selenium ChromeDriver How […]

Read more
Selenium findElement and findElements Examples — step-by-step DevOps tutorial on Progressive Robot

Selenium findElement and findElements Examples

URL: https://www.progressiverobot.com/selenium-findelement-findelements-examples/ Whenever you want to interact with a web page, we require a user to locate the web elements. We usually start by finding the HTML elements on the page whenever we plan to automate any web application using WebDriver. [Selenium WebDriver](/community/tutorials/selenium-webdriver) defines two methods for identifying the elements, they are findElement and findElements. […]

Read more
Selenium WebDriver — step-by-step DevOps tutorial on Progressive Robot

Selenium WebDriver

URL: https://www.progressiverobot.com/selenium-webdriver/ What is a Webdriver Webdriver is a tool used in web application development to automate testing across multiple types of browsers. Since browsers such as Chrome, Safari, Firefox and Edge all have a tendency to display web apps and websites differently, developers need a efficient way to test accurately at scale. Selenium is […]

Read more
CHAT