Thursday, December 27, 2018

Testing Job News

Principal Global Services Pvt. Ltd. Eligibility : # BE/ BTech/ MCA/ MS or equivalent (all branches) from 2019 batch # Good academic record and pH score Job Description : # Analysis, Design, Coding, Testing, reviews and Documentation. # Test Case execution, Test Reporting, Defect life cycle, Status Reporting. # Reporting, Effective interaction with team Note: # In case your college allows full...

Saturday, January 7, 2017

Java frequently asked Interview questions for Selenium

1.       What is the default value of the local variables? A. The local variables are not initialized to any default value, neither primitives nor object references. 2.       What is constructor? A. Constructor is just like a method that is used to initialize the state of an object. It is invoked...

Multi tabs handling Using Selenium

Using Robot We can Handle Multiple Tabs in Seleniumpackage samples;import java.awt.AWTException;import java.awt.Robot;import java.awt.event.KeyEvent;import java.util.concurrent.TimeUnit;import org.openqa.selenium.By;import org.openqa.selenium.Keys;import org.openqa.selenium.WebDriver;import org.openqa.selenium.firefox.FirefoxDriver;import org.openqa.selenium.interactions.Actions;import org.testng.annotations.Test;/** * *...

Friday, January 6, 2017

Synchronizing Selenium Webdriver with Application using implicit and Explicit

To make synchronize webdriver with application we have three ways in selenium. impliciteWait : If we use implicitlyWait(20, TimeUnit.SECONDS) method, then the  driver will wait up to 20( or more) seconds , if object is available meanwhile,then the next operation will be performed, it won't consider about object state like enabled, disable or clickable , editable etc… if object not identified...

1. What is Selenium? Faqs

1.    What is Selenium?Selenium is a suite of tools for browser automation. It is composed of "IDE", a recording and playback mechanism, "WebDriver" and "RC" which provide APIs for browser automation in a wide variety of languages, and "Grid", which allows many tests using the APIs to be run in parallel. It works with most browsers, including Firefox from 3.0 up to 7, Internet...