Search Results for: java

MySQL DataBase Testing

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 »

Allure Reporting

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 »

Handing Window,Frames,IFrames

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 API Examples

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 »

About

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

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

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 »