September 2017 – Make Selenium Easy

Hello Professionals, I will post a list of frequently asked question on Manual testing in interviews. It will help for both freshers and experienced people. As of now, I will not post answers of questions but in coming days, I will. Define software testing. What are the types of software testing? What is in mind […]

Hello Folks, In this post, we will learn how to handle “ElementNotVisibleException ” and “Element is not clickable exceptions”. While running Selenium scripts, sometimes we face below exceptions: “org.openqa.selenium.WebDriverException: unknown error: Element is not clickable at point (242, 845). Other element would receive the click” “org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be […]

Hello Folks, Recently I learnt new thing so just wanted to share with you. We will see how to locate web elements which has multiple class names as html attribute. See carefully below html code: You will see “CLASS” attribute which has value as “required_field cityPadRight ac_input“. Actually above web element has multiple class name […]

Hello Folks, In last two posts we have seen handling different types of calendars: Handling Calendar Which Has Year & Month As Drop down In Selenium How To Handle Different Types Of Calendars In Selenium: Part 1 If you notice, You need to write a lengthy code to handle calendars in selenium. Is there any […]

Hello Folks, We have seen Handling of calendar of one type in last post. Adding to it, in this post we will see handling of calendar which has year and month as drop-downs. A calendar which has year and month has drop-downs looks as below: User needs to select year followed by month and day. This […]

Hello Folks, In this post we will see a very important topic “Handling calendar in Selenium”. We always see some input boxes where we need to select date from calendar widget. When we click on that input box, a calendar widget gets open and we need to select proper date value from that widget. You […]

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 Find Position Of Letter In Alphabet. Problem: Accept a letter from user and print position of input letter in alphabet. Example: A has 1st position in alphabet. B has 2nd position in […]

Hello Folks, In last post we have seen Taking Screenshot Using TakesScreenshot Interface In Selenium. I have explained about its drawbacks as well. Drawbacks of using TakesScreenshot interface for taking screenshot in selenium: It will not take screen shot when an alert is open.  It will give you an exception stating “org.openqa.selenium.UnhandledAlertException”. It takes screenshot of visible area of […]

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 Draw An Equilateral Triangle Using Stars Of Given Row. Problem statement: Draw an Equilateral Triangle using stars of given row. Example: An Equilateral Triangle of 5 rows: Solution: Number of stars in a row is equal […]