Selenium

Selenium Tutorial

XPath Contains: Text, Following Sibling & Ancestor in Selenium

XPath Contains: Text, Following Sibling & Ancestor in Selenium

What is XPath Contains? XPath contains is a function within Xpath expression which is used to search for the web elements that contain a particular text. We can extract all the elements that match the given text value using the XPath contains() function throughout the webpage. Contains in XPath has ability to find the element…

How to Scroll Down or UP Page in Selenium Webdriver

How to Scroll Down or UP Page in Selenium Webdriver

Scroll in Selenium To scroll using Selenium, you can use JavaScriptExecutor interface that helps to execute JavaScript methods through Selenium Webdriver Syntax: JavascriptExecutor js = (JavascriptExecutor) driver; js.executeScript(Script,Arguments); Script – This is the JavaScript that needs to execute. Arguments – It is the arguments to the script. It’s optional. Selenium Script to scroll down the…

Object Repository in Selenium (XML & Properties File)

Object Repository in Selenium (XML & Properties File)

What is an Object Repository? An object repository is a common storage location for all objects. In Selenium WebDriver context, objects would typically be the locators used to uniquely identify web elements. The major advantage of using object repository is the segregation of objects from test cases. If the locator value of one webelement changes,…

Selenium with Cucumber (BDD Framework Tutorial)

Selenium with Cucumber (BDD Framework Tutorial)

In this tutorial, you will learn how to integrate Cucumber with Selenium Webdriver. What is Cucumber? Cucumber is a testing approach which supports Behavior Driven Development (BDD). It explains the behavior of the application in a simple English text using Gherkin language. Learn more at – https://www.guru99.com/cucumber-tutorials.html What is Selenium? Selenium is an automation tool…

Using SoapUI with Selenium for Web Service Testing

Using SoapUI with Selenium for Web Service Testing

SoapUI is the most popular open source functional Testing tool for Api Testing. It provides complete Test coverage and supports all standard protocols and technologies. What is SOAP? SOAP is a simple XML-based protocol. It allows applications to exchange information over HTTP. It uses Web services description language(WSDL) language for communication. Other applications can also…

End of content

End of content