Download the java and installation in windows

Download the java and installation process You need to download the java before java installation. Java is essential component to configure and run selenium test scripts in eclipse. Below given steps will show you how to download the java and java installation process in windows 10. Download the java You need to download latest version … Read more

CSS selector in selenium

This guide will show you how to use CSS Selector in Selenium to locate web elements accurately during test automation. You’ll learn various CSS selector strategies with syntax examples to help write cleaner and more efficient Selenium scripts. CSS selector in selenium CSS selectors in selenium are used to find element by string of html … Read more

Find element by link text in selenium

Selenium find element by link text Find element by link text is used only to locate hyperlinks on page. You can use By.linkText method of selenium to find link on page with exact match of text. Selenium find link by text value of hyperlink element. Expression to find by link text : findElement(By.linkText(“Text of link”)); How to … Read more

Selenium find element by class name

Find element by class name selenium Selenium find element by class name used when there is class name available for element. Selenium support find by class name method to locate element by class name. Generally we are using id, name to find element. But if element do not have such identifiers and only class name … Read more