Refer to the below Links for Practise Complete JAVA QUIZ Selenium Advanced Quiz 50 Real Time Interview Questions Selenium Quiz REST API QUIZ Dynamic Content: In Web Applications the data… Read more »
Selenium Locators Identification of Objects/WebElements/HTML Components can be done in 8 ways: (or) Locators: 1. ID Locator driver.findElement(By.id(“usernmae”)) 2. NAME LOCATOR driver.findElement(By.name(“username”)); driver.findElement(By.name(“password”)); – 3. CLASSNAME LOCATOR class=”textboxcolor” driver.findElement(By.className(“textboxcolor”)); class=”inputtext… Read more »
As a tester we are mainly interested in generating very good html reports to get to know the Test cases passed and failed. TestNG which is a java framework helps… Read more »
HyperLinks in HTML useful to navigate to another web-page. HyperLinks are defined using the tag name-a using an attribute name href. We need to define the Link text between the… Read more »
In this tutorial we will discuss about the identifying the Selenium Locator for the Css (Cascading Style Sheets) in the following scenario’s white spaces in an Web Element attribute value… Read more »
In this tutorial we will discuss about automating the Interactive Charts and SVG [Scalable Vector Graphics] in Selenium. To automate these Interactive Charts, Selenium Locators such as Xpath and Css-Selector… Read more »
In this example we will discuss about the usage of normalize-space in Xpath. We already aware of the Functions like text(),contains(),starts-with(),last() and position() in Xpath. Refer to this link to… Read more »
Xpath Helper,Chropath Plugins,Javascript Console for Chrome Browser In Selenium they are totally 8 Locators. Out of all Locators, Xpath is very important which helps to identify the WebElements. Identifying the… Read more »
The Difference Between :nth-child and :nth-of-type CssSelector CssSelector is one of the most important Locator in Selenium WebDriver. Also Css is faster when compare to Xpath. In CssSelector to use… Read more »
How can I install a second version of Firefox without affecting the first? In the case of Selenium Locators to learn about Xpath and CssSelector its good to practice the… Read more »