Selenium Interview Questions and answers

1) What is Selenium and what is composed of? Ans: Selenium is a suite of tools for automated web testing.  It is composed of
  • Selenium IDE (Integrated Development Environment) :  It is a tool for recording and playing back.  It is a firefox plugin
  • WebDriver and RC:  It provide the APIs for a variety of languages like Java, .NET, PHP, etc. With most of the browsers Webdriver and RC works.
  • Grid: With the help of Grid you can distribute tests on multiple machines so that test can be run parallel which helps in cutting down the time required for running in browser test suites

2) What is Selenium 2.0 ? Ans: Web testing tools Selenium RC and WebDriver are consolidated in single tool in Selenium 2.0
3) How will you find an element using Selenium? Ans: In Selenium every object or control in a web page is referred as an elements, there are different ways to find an element in a web page they are
  • ID
  • Name
  • Tag
  • Attribute
  • CSS
  • Linktext
  • PartialLink Text
  • Xpath etc

4) List out the test types that are supported by Selenium? Ans: For web based application testing selenium can be used The test types can be supported are a)      Functional b)      Regression For post release validation with continuous integration automation tool could be used a)      Jenkins b)      Hudson c)       Quick Build d)      CruiseCont
5)  Mention what is the use of X-path? Ans: X-Path is used to find the WebElement in web pages. It is also useful in identifying the dynamic elements.
6) Explain the difference between single and double slash in X-path? Ans: Single slash ‘/ ’
  • Single slash ( / ) start selection from the document node
  • It allows you to create ‘absolute’ path expressions
Double Slash ‘// ’
  • Double slash ( // ) start selection matching anywhere in the document
  • It enables to create ‘relative’ path expressions

7) List out the technical challenges with Selenium? Ans: Technical challenges with Selenium are
  • Selenium supports only web based applications
  • It does not support the Bitmap comparison
  • For any reporting related capabilities have to depend on third party tools
  • No vendor support for tool compared to commercial tools like HP UFT
  • As there is no object repository concept in Selenium, maintainability of objects becomes difficult

8) What is the difference between type keys and type commands ? Ans: TypeKeys() will trigger JavaScript event in most of the cases whereas .type() won’t. Type key populates the value attribute using JavaScript whereas .typekeys() emulates like actual user typing
9)  What is the difference between verify and assert commands? Ans: Assert:  Assert allows checking whether an element is on the page or not. The test will stop on the step failed, if the asserted element is not available. In other words, the test will terminate at the point where check fails. Verify: Verify command will check whether the element is on the page, if it is not then the test will carry on executing.  In verification, all the commands are going to run guaranteed even if any of test fails.
10) What is JUnit Annotations and what are different types of annotations which are useful ? Ans: In JAVA a special form of syntactic meta-data can be added to Java source code, this is know as Annotations.  Variables, parameters, packages, methods and classes are annotated some of the JUnit annotations which can be useful are
  • Test
  • Before
  • After
  • Ignore
  • BeforeClass
  • AfterClass
  • RunWith

11) While using click command can you use screen coordinate?  Ans: To click on specific part of element, you would need to use clickAT command.  ClickAt command accepts element locator and x, y co-ordinates as arguments- clickAt (locator, cordString)
12)  What are the advantages of Selenium? Ans:
  • It supports C#, PHP, Java, Perl, Phython
  • It supports different OS like Windows, Linux and Mac OS
  • It has got powerful methods to locate elements (Xpath, DOM , CSS)
  • It has highly developer community supported by Google

13) Why testers should opt for Selenium and not QTP? Ans: Selenium is more popular than QTP as
  • Selenium is an open source whereas QTP is a commercial tool
  • Selenium is used specially for testing web based applications while QTP can be used for testing client serverapplication also
  • Selenium supports Firefox, IE, Opera, Safari  on operating systems like Windows, Mac, linux etc. however QTP is limited to Internet Explorer on Windows.
  • Selenium supports many Programming languages like Ruby, Perl, Python whereas QTP supports only VB script

14) What are the four parameter you have to pass in Selenium? Ans: Four parameters that you have to pass in Selenium are
  • Host
  • Port Number
  • Browser
  • URL

15) What is the difference between setSpeed() and sleep() methods? Ans: Both will delay the speed of execution. Thread.sleep ():  It will stop the current (java) thread for the specified period of time.  Its done only once
  • It takes a single argument in integer format
Ex: thread.sleep(2000)- It will wait for 2 seconds
  • It waits only once at the command given at sleep
SetSpeed () :  For specific amount of time it will stop the execution for every selenium command.
  • It takes a single argument in integer format
Ex: selenium.setSpeed(“2000”)- It will wait for 2 seconds
  • Runs each command  after setSpeed delay by the number of milliseconds mentioned in set Speed
This command is useful for  demonstration purpose or if you are using a slow web application
16) What is same origin policy? How you can avoid same origin policy? Ans: The “Same Origin Policy” is introduced for security reason, and it ensures that content of your site will never be accessible by a script from another site.  As per the policy, any code loaded within the browser can only operate within that website’s domain. To avoid “Same Origin Policy” proxy injection method is used, in proxy injection mode the Selenium Server acts as a client configured HTTP proxy , which sits between the browser and application under test and then masks the AUT under a fictional URL
17) What is heightened privileges browsers? Ans: The purpose of heightened privileges is similar to Proxy Injection, allows websites to do something that are not commonly permitted.  The key difference is that the browsers are launced in a special mode called heightened privileges.  By using these browser mode, Selenium core can open the AUT directly and also read/write its content without passing the whole AUT through the Selenium RC server.
18) How you can use “submit” a form using Selenium ? Ans: You can use “submit” method on element to submit form- element.submit () ; Alternatively you can use click method on the element which does form submission
19) What are the features of TestNG and list some of the functionality in TestNG which makes it more effective? Ans: TestNG is a testing framework based on JUnit and NUnit to simplify a broad range of testing needs, from unit testing to integration testing. And the functionality which makes it efficient testing framework are
  • Support for annotations
  • Support for data-driven testing
  • Flexible test configuration
  • Ability to re-execute failed test cases

20) Mention what is the difference between Implicit wait and Explicit wait? Ans: Implicit Wait: Sets a timeout for all successive Web Element searches. For the specified amount of time it will try looking for element again and again before throwing a NoSuchElementException.  It waits for elements to show up. Explicit Wait :  It is a one-timer, used for a particular search.
21) Which attribute you should consider throughout the script in frame for “if no frame Id as well as no frame name”? Ans: You can use…..driver.findElements(By.xpath(“//iframe”))…. This will return list of frames. You will ned to  switch to each and every frame and search for locator which we want. Then break the loop
22) Explain what is the difference between find elements () and find element () ? Ans: find element (): It finds the first element within the current page using the given “locating mechanism”.  It returns a single WebElement findElements () : Using the given “locating mechanism” find all the elements within the current page.  It returns a list of web elements.
23) Explain what are the JUnits annotation linked with Selenium? Ans: The JUnits annotation linked with Selenium are
  • @Before public void method() – It will perform the method () before each test, this method can prepare the test
  • @Test public void method() – Annotations @Test identifies that this method is a test method environment
  • @After public void method()- To execute a method before this annotation is used, test method must start with test@Before

24) Explain what is Datadriven framework and Keyword driven? Ans: Datadriven framework:  In this framework, the test data is separated and kept outside the Test Scripts, while test case logic resides in Test Scripts.  Test data is read from the external files ( Excel Files) and are loaded into the variables inside the Test Script.  Variables are used for both for input values and for verification values. Keyworddriven framework: The keyword driven frameworks requires the development of data tables and keywords, independent of the test automation.  In a keyword driven test, the functionality of the application under test is documented in a table as well as step by step instructions for each test.
25) Explain how you can login into any site if it’s showing any authentication popup for password and username? Ans: Pass the username and password with url
26) Explain how to assert text of webpage using selenium 2.0 ? Ans: WebElement el = driver.findElement(By.id(“ElementID”)) //get test from element and stored in text variable String text = el.getText(); //assert text from expected Assert.assertEquals(“Element Text”, text);
27) What is Object Repository ? Ans: An object repository is an essential entity in any UI automations which allows a tester to store all object that will be used in the scripts in one or more centralized locations rather than scattered all over the test scripts.
28) Explain how Selenium Grid works? Ans: Selenium Grid sent the tests to the hub. These tests are redirected to Selenium Webdriver, which launch the browser and run the test.  With entire test suite, it allows for running tests in parallel.
29) Can we use Selenium grid for performance testing? Ans: Yes. But not as effectively as a dedicated performance testing tool like Loadrunner.
30) What is Automation Testing? Ans: Automation testing or Test Automation is a process of automating the manual process to test the application/system under test. Automation testing involves use to a separate testing tool which lets you create test scripts which can be executed repeatedly and doesn’t require any manual intervention.
31) What are the benefits of Automation Testing? Ans: Benefits of Automation testing are:
  1. Supports execution of repeated test cases
  2. Aids in testing a large test matrix
  3. Enables parallel execution
  4. Encourages unattended execution
  5. Improves accuracy thereby reducing human generated errors
  6. Saves time and money

32) Why should Selenium be selected as a test tool? Ans: Selenium
  1. is free and open source
  2. have a large user base and helping communities
  3. have cross Browser compatibility (Firefox, chrome, Internet Explorer, Safari etc.)
  4. have great platform compatibility (Windows, Mac OS, Linux etc.)
  5. supports multiple programming languages (Java, C#, Ruby, Python, Pearl etc.)
  6. has fresh and regular repository developments
  7. supports distributed testing

33) What is Selenium? What are the different Selenium components? Ans: Selenium is one of the most popular automated testing suites. Selenium is designed in a way to support and encourage automation testing of functional aspects of web based applications and a wide range of browsers and platforms. Due to its existence in the open source community, it has become one of the most accepted tools amongst the testing professionals. Selenium is not just a single tool or a utility, rather a package of several testing tools and for the same reason it is referred to as a Suite. Each of these tools is designed to cater different testing and test environment requirements. The suite package constitutes of the following sets of tools:
  • Selenium Integrated Development Environment (IDE) – Selenium IDE is a record and playback tool. It is distributed as a Firefox Plugin.
  • Selenium Remote Control (RC) – Selenium RC is a server that allows user to create test scripts in a desired programming language. It also allows executing test scripts within the large spectrum of browsers.
  • Selenium WebDriver – WebDriver is a different tool altogether that has various advantages over Selenium RC. WebDriver directly communicates with the web browser and uses its native compatibility to automate.
  • Selenium Grid– Selenium Grid is used to distribute your test execution on multiple platforms and environments concurrently.

34) What are the testing types that can be supported by Selenium? Ans: Selenium supports the following types of testing:
  1. Functional Testing
  2. Regression Testing

35) What are the limitations of Selenium? Ans: Following are the limitations of Selenium:
  • Selenium supports testing of only web based applications
  • Mobile applications cannot be tested using Selenium
  • Captcha and Bar code readers cannot be tested using Selenium
  • Reports can only be generated using third party tools like TestNG or Junit.
  • As Selenium is a free tool, thus there is no ready vendor support though the user can find numerous helping communities.
  • User is expected to possess prior programming language knowledge.

36) What is the difference between Selenium IDE, Selenium RC and WebDriver? Ans: 
Feature Selenium IDE Selenium RC WebDriver
Browser Compatibility Selenium IDE comes as a Firefox plugin, thus it supports only Firefox Selenium RC supports a varied range of versions of Mozilla Firefox, Google Chrome, Internet Explorer and Opera WebDriver supports a varied range of versions of Mozilla Firefox, Google Chrome, Internet Explorer and Opera. Also supports HtmlUnitDriver which is a GUI less or headless browser.
Record and Playback Selenium IDE supports record and playback feature Selenium RC doesn’t supports record and playback feature WebDriver doesn’t support record and playback feature
Server Requirement Selenium IDE doesn’t require any server to be started before executing the test scripts Selenium RC requires server to be started before executing the test scripts WebDriver doesn’t require any server to be started before executing the test scripts
Architecture Selenium IDE is a Javascript based framework Selenium RC is a JavaScript based Framework WebDriver uses the browser’s native compatibility to automation
Object Oriented Selenium IDE is not an object oriented tool Selenium RC is semi object oriented tool WebDriver is a purely object oriented tool
Dynamic Finders (for locating web elements on a webpage) Selenium IDE doesn’t support dynamic finders Selenium RC doesn’t support dynamic finders WebDriver supports dynamic finders
Handling Alerts, Navigations, Dropdowns Selenium IDE doesn’t explicitly provides aids to handle alerts, navigations, dropdowns Selenium RC doesn’t explicitly provides aids to handle alerts, navigations, dropdowns WebDriver offers a wide range of utilities and classes that helps in handling alerts, navigations, and dropdowns efficiently and effectively.
WAP (iPhone/Android) Testing Selenium IDE doesn’t support testing of iPhone/Andriod applications Selenium RC doesn’t support testing of iPhone/Andriod applications WebDriver is designed in a way to efficiently support testing of iPhone/Android applications. The tool comes with a large range of drivers for WAP based testing. For example, AndroidDriver, iPhoneDriver
Listener Support Selenium IDE doesn’t support listeners Selenium RC doesn’t support listeners WebDriver supports the implementation of Listeners
Speed Selenium IDE is fast as it is plugged in with the web-browser that launches the test. Thus, the IDE and browser communicates directly Selenium RC is slower than WebDriver as it doesn’t communicates directly with the browser; rather it sends selenese commands over to Selenium Core which in turn communicates with the browser. WebDriver communicates directly with the web browsers. Thus making it much faster.

37) When should I use Selenium IDE? Ans: Selenium IDE is the simplest and easiest of all the tools within the Selenium Package. Its record and playback feature makes it exceptionally easy to learn with minimal acquaintances to any programming language. Selenium IDE is an ideal tool for a naïve user.
38) What is Selenese? Ans: Selenese is the language which is used to write test scripts in Selenium IDE.
39) What are the different types of locators in Selenium? Ans: Locator can be termed as an address that identifies a web element uniquely within the webpage. Thus, to identify web elements accurately and precisely we have different types of locators in Selenium.
  • ID
  • ClassName
  • Name
  • TagName
  • LinkText
  • PartialLinkText
  • Xpath
  • CSS Selector
  • DOM

40) What is difference between assert and verify commands? Ans: Assert: Assert command checks whether the given condition is true or false. Let’s say we assert whether the given element is present on the web page or not. If the condition is true then the program control will execute the next test step but if the condition is false, the execution would stop and no further test would be executed. Verify: Verify command also checks whether the given condition is true or false. Irrespective of the condition being true or false, the program execution doesn’t halts i.e. any failure during verification would not stop the execution and all the test steps would be executed.
41) What is an Xpath? Ans: Xpath is used to locate a web element based on its XML path. XML stands for Extensible Markup Language and is used to store, organize and transport arbitrary data. It stores data in a key-value pair which is very much similar to HTML tags. Both being markup languages and since they fall under the same umbrella, Xpath can be used to locate HTML elements. The fundamental behind locating elements using Xpath is the traversing between various elements across the entire page and thus enabling a user to find an element with the reference of another element.
42) What is the difference between “/” and “//” in Xpath? Ans: Single Slash “/” – Single slash is used to create Xpath with absolute path i.e. the xpath would be created to start selection from the document node/start node. Double Slash “//” – Double slash is used to create Xpath with relative path i.e. the xpath would be created to start selection from anywhere within the document.
43) What is Same origin policy and how it can be handled? Ans: The problem of same origin policy disallows to access the DOM of a document from an origin that is different from the origin we are trying to access the document. Origin is a sequential combination of scheme, host and port of the URL. For example, for a URL http:// http://www.softwaretestinghelp.com/resources/, the origin is a combination of http, softwaretestinghelp.com, 80 correspondingly. Thus the Selenium Core (JavaScript Program) cannot access the elements from an origin that is different from where it was launched. For Example, if I have launched the JavaScript Program from “http://www.softwaretestinghelp.com”, then I would be able to access the pages within the same domain such as “http://www.softwaretestinghelp.com/resources” or “http://www.softwaretestinghelp.com/istqb-free-updates/”. The other domains like google.com, seleniumhq.org would no more be accessible. So, In order to handle same origin policy, Selenium Remote Control was introduced.
44) When should I use Selenium Grid? Ans: Selenium Grid can be used to execute same or different test scripts on multiple platforms and browsers concurrently so as to achieve distributed test execution, testing under different environments and saving execution time remarkably.
45) What do we mean by Selenium 1 and Selenium 2? Ans: Selenium RC and WebDriver, in a combination are popularly known as Selenium 2. Selenium RC alone is also referred as Selenium 1.
46) How do I launch the browser using WebDriver? Ans: The following syntax can be used to launch Browser: WebDriver driver = new FirefoxDriver(); WebDriver driver = new ChromeDriver(); WebDriver driver = new InternetExplorerDriver();
47) What are the different types of Drivers available in WebDriver? Ans: The different drivers available in WebDriver are:
  • FirefoxDriver
  • InternetExplorerDriver
  • ChromeDriver
  • SafariDriver
  • OperaDriver
  • AndroidDriver
  • IPhoneDriver
  • HtmlUnitDriver

48) What are the different types of waits available in WebDriver? Ans: There are two types of waits avaliable in webDriver:
  1. Implicit Wait
  2. Explicit Wait
Implicit Wait: Implicit waits are used to provide a default waiting time (say 30 seconds) between each consecutive test step/command across the entire test script. Thus, subsequent test step would only execute when the 30 seconds have elapsed after executing the previous test step/command. Explicit Wait: Explicit waits are used to halt the execution till the time a particular condition is met or the maximum time has elapsed. Unlike Implicit waits, explicit waits are applied for a particular instance only.
49) How to type in a textbox using Selenium? Ans: User can use sendKeys(“String to be entered”) to enter the string in the textbox. Syntax: WebElement username = drv.findElement(By.id(“Email”)); // entering username username.sendKeys(“sth”);
50) How can you find if an element in displayed on the screen? Ans: WebDriver facilitates the user with the following methods to check the visibility of the web elements. These web elements can be buttons, drop boxes, checkboxes, radio buttons, labels etc.
  1. isDisplayed()
  2. isSelected()
  3. isEnabled()
Syntax: isDisplayed(): boolean buttonPresence = driver.findElement(By.id(“gbqfba”)).isDisplayed(); isSelected(): boolean buttonSelected = driver.findElement(By.id(“gbqfba”)).isDisplayed(); isEnabled(): boolean searchIconEnabled = driver.findElement(By.id(“gbqfb”)).isEnabled();
51) How can we get a text of a web element? Ans: Get command is used to retrieve the inner text of the specified web element. The command doesn’t require any parameter but returns a string value. It is also one of the extensively used commands for verification of messages, labels, errors etc displayed on the web pages. Syntax: String Text = driver.findElement(By.id(“Text”)).getText();
52) How to select value in a dropdown? Ans: Value in the drop down can be selected using WebDriver’s Select class. Syntax: selectByValue: Select selectByValue = newSelect(driver.findElement(By.id(“SelectID_One”))); selectByValue.selectByValue(“greenvalue”); selectByVisibleText: Select selectByVisibleText = new Select (driver.findElement(By.id(“SelectID_Two”))); selectByVisibleText.selectByVisibleText(“Lime”); selectByIndex: Select selectByIndex = newSelect(driver.findElement(By.id(“SelectID_Three”))); selectByIndex.selectByIndex(2);
53) What are the different types of navigation commands? Ans: Following are the navigation commands: navigate().back() – The above command requires no parameters and takes back the user to the previous webpage in the web browser’s history. Sample code: driver.navigate().back(); navigate().forward() – This command lets the user to navigate to the next web page with reference to the browser’s history. Sample code: driver.navigate().forward(); navigate().refresh() – This command lets the user to refresh the current web page there by reloading all the web elements. Sample code: driver.navigate().refresh(); navigate().to() – This command lets the user to launch a new web browser window and navigate to the specified URL. Sample code: driver.navigate().to(“https://google.com”);
54) How to click on a hyper link using linkText? Ans: driver.findElement(By.linkText(“Google”)).click(); The command finds the element using link text and then click on that element and thus the user would be re-directed to the corresponding page. The above mentioned link can also be accessed by using the following command. driver.findElement(By.partialLinkText(“Goo”)).click(); The above command find the element based on the substring of the link provided in the parenthesis and thus partialLinkText() finds the web element with the specified substring and then clicks on it.
55) How to handle frame in WebDriver? Ans: An inline frame acronym as iframe is used to insert another document with in the current HTML document or simply a web page into a web page by enabling nesting. Select iframe by id driver.switchTo().frame(“ID of the frame“); Locating iframe using tagName driver.switchTo().frame(driver.findElements(By.tagName(“iframe”).get(0)); Locating iframe using index frame(index) driver.switchTo().frame(0);
56) Can we enter text without using sendKeys() ? Ans: Yes we can enter text without using sendKeys() method. We have to use combination of javascript and wrapper classes with WebDriver extension class, check the below code- public static void setAttribute(WebElement element, String attributeName, String value) { WrapsDriver wrappedElement = (WrapsDriver) element; JavascriptExecutor driver = (JavascriptExecutor)wrappedElement.getWrappedDriver(); driver.executeScript(“arguments[0].setAttribute(arguments[1],arguments[2])”, element, attributeName, value); } call the above method in the test script and pass the text field attribute and pass the text you want to enter.
Mahesh J

Mahesh J

Author

Hello all! I’m a nature’s child, who loves the wild, bringing technical knowledge to you restyled.