Real Time Scenarios-Selenium WebDriver
1. How to apply break from an nested for loop in java? Lets try this on a Real Time Website -> https://demo.openmrs.org/openmrs/login.htm Access the url and enter Admin/Admin123 as credentials… Read more »
1. How to apply break from an nested for loop in java? Lets try this on a Real Time Website -> https://demo.openmrs.org/openmrs/login.htm Access the url and enter Admin/Admin123 as credentials… Read more »
MYSQL DataBase testing using Selenium WebDriver-Step by Step Guide: Refer to the below Links for Practise Selenium Wiki Complete List of Selenium Basics 50 Real Time Interview Questions Real Time… Read more »
MySQL Data Base INSTALLATION testing Step-by-Step Guide Introduction SQL Part of “MYSQL” stands for Structured Query Language. MYSQL is a relational database from oracle where data is stored in tables…. Read more »
Refer to the below Links for Practise Selenium Wiki Selenium Quiz Selenium Advanced Quiz Java Quiz Java OOPS Quiz Selenium WebDriver Tester Resume List the Java Classes available in Selenium… Read more »
Refer to the below Links for Practice Collections in Java Complete List of Selenium Basics 50 Real Time Interview Questions Real Time Scenario’s Java Platform Standard Edition 8 Documentation Java… Read more »
HANDLING WINDOWS/IFRAMES: In order to handle windows/browsers in selenium, WebDriver API contains following methods which helps the user to switch between windows. API Url–> https://seleniumhq.github.io/selenium/docs/api/java/ org.openqa.selenium Interface WebDriver.TargetLocator WebDriver defaultContent()… Read more »
REST[Representational State Transfer]: Click this link for REST API Basics A RESTful API is an application program interface (API) that uses HTTP requests to GET, PUT, POST and DELETE data. A RESTful… Read more »
The objective of this blog is to share the knowledge which helps beginners to learn Selenium ,Java ,TestNG with Real Time Examples.This blog has information about Java, Selenium Quizzes and… Read more »
Rest API Demo Examples Reference Link for REST API Basics:: http://total-qa.com/rest-services/restapi-examples/ JAVA Installation: Go to Oracle official site using the following link to download JDK 1.8 JDK 1.8 Download Link… 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 »