Make Selenium Easy – Page 11

Hello Folks, As part of Frequently Asked Java Programs In Interviews For Freshers And Experienced, in this post we will see a java program to swap two String variables without using third variable. Problem Statement:- Before Swapping: String s1= “Java”; String s2= “Selenium”; After Swapping: String s1= “Selenium”; String s2= “Java”; We have already seen Swapping … Continue reading Frequently Asked Java Programs: 32 – Swap Two String Variables Without Using Third Variable

Hello Folks, In last post, we have seen about Introduction & Installation of NodeJS. In this post we will see about Introduction & Installation of NPM. You must have heard of Maven and Maven Central Repository. Maven is a build automation tool for Java projects. A major use of Maven to install/download Java libraries dynamically … Continue reading Protractor Tutorial 6 – Introduction & Installation of NPM – Node Package Manager

I recently presented a topic on “Common Mistakes & Best Practices in Selenium” in ATA Meetups. ATA (Agile Testing Alliance) is a non-profit testing community and certification organization, created to grow agile testing awareness, practices and acceptance. Check for CP-SAT certification for Selenium here. I will post PPT here so that you people can also … Continue reading Common Mistakes & Best Practices in Selenium

Refer all Selenium interview question here. Learn and share to reach it maximum. When we integrate Selenium with TestNG, we create test methods using @Test annotation provided by TestNG. You can create test methods as many as you want. But sometimes you may need to ignore or disable test to exclude it while running as … Continue reading SELENIUM INTERVIEW QUESTION 6 – All Ways to Exclude/Ignore/Disable a Test Method in TestNG

NodeJS official website defines it as:- Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. Let me make it little simple for you. NodeJS is an open source JavaScript based framework which is dynamic, cross-platform , asynchronous(Non-blocking APIs) and highly scalable runtime environment. It was developed by Ryan Dahl in 2009. It is … Continue reading Protractor Tutorial 5 – Introduction & Installation of NodeJS

Hello Folks, In this post we are going to see something interesting concepts about waits in Selenium WebDriver. Generally Selenium professionals know that there are three types of waits in Selenium WebDriver:- Implicit WaitExplicit WaitFluent Wait In fact there are only two types of waits:- Implicit waitExplicit wait We can implement Explicit wait in two … Continue reading Implementation of Explicit Wait as FluentWait and WebDriverWait in Selenium WebDriver

As per official document of Protractor:- Protractor is an end-to-end test framework for Angular and AngularJS applications. Protractor runs tests against your application running in a real browser, interacting with it as a user would. Three major points about Protractor are:- Protractor is built on top of WebDriverJS, which uses native events and browser-specific drivers … Continue reading Protractor Tutorial 4 – Introduction To Protractor Test Tool & How It Works

As a part of a Series of posts on Learn Selenium With Quiz, This set contains questions from XPath concepts in Selenium WebDriver. I will suggest you to go through below link before taking up quiz: XPath Basics 1 XPath Basic 2 Advanced XPath Now take up below quiz. Answers will be automatically submitted once you … Continue reading Learn Selenium With Quiz – Advance Level 7 – XPath

This is an important interview question in Java and mainly asked to Freshers. I will try to explain my best it here. A Java program has a starting point of execution with a predefined signature of main method in a class. Method signature of main method is given below:-

public static void main(String[] args){}

public static void main(String[] args){}

This could be also written … Continue reading Java Interview Question – Explain public static void main(String[] args)

Debugging and logging are very important when you are trying to develop/test something. During development or Testing of any software or API, you may need to debug or log what is happening in between if actual behaviour is not as per expected behaviour. You must have heard of browser’s developer console or web console. Postman … Continue reading Postman Tutorial Part 22 – Postman Console – Debugging And Logging