Lesson 6 of 7By Pankaj Kumar
Last updated on Apr 9, 2021118753Testing is a crucial phase in the software development life cycle (SDLC). Manual testing, in particular, involves the physical execution of test cases against the applications to detect bugs and error. However, manual testing posed a lot of challenges, and a method to automate the testing process was in demand. As a result, Selenium, a powerful automated testing tool, was introduced.
Selenium is an open-source, automated testing tool used to test web applications across various browsers. So, here’s the sad part, Selenium can only test web applications. Desktop and mobile apps cannot be tested using Selenium. However, other tools, like HP’s QTP and Appium, among others, can be used to test software and mobile applications.
But what makes Selenium the widely used testing tool? Here are a few reasons:
If you’re all geared up for a Selenium interview, here are the top 30 frequently asked interview questions.
Selenium IDE
It is a Firefox/Chrome plug-in that was developed to speed up the creation of automation scripts. It records the user actions on the web browser and exports them as a reusable script.
Selenium Remote Control (RC)
RC is a server that allows users to write application tests in various programming languages. The commands from the test script are accepted by this server and are sent to the browser as Selenium core JavaScript commands. The browser then behaves accordingly.
Selenium WebDriver
WebDriver is a programming interface that helps create and run test cases. It makes provision to act on web elements. Unlike RC, WebDriver does not require an additional server and interacts natively with the browser applications.
Selenium Grid
The grid was designed to distribute commands to different machines simultaneously. It allows the parallel execution of tests on different browsers and different operating systems. It is exceptionally flexible and is integrated with other suite components for simultaneous execution.
Selenium supports Regression testing and Functional testing.
Regression testing - It is a full or partial selection of already executed test cases that are re-executed to ensure existing functionalities work fine.
The steps involved are -
Functional testing - Functional Testing involves the verification of every function of the application with the required specification.
The following are the steps involved:
Selenium 2.0 is a tool that makes the development of automated tests for web applications easier. It represents the merger of the original Selenium project with the WebDriver project. Selenium RC got deprecated since the merge, however, was used for backward compatibility
Selenium 3.0 is the extended version of Selenium 2.0. It is inherently backward compatible and does not involve Selenium RC. The new version came along with several bug fixes and increased stability.
Same Origin policy is a feature adopted for security purposes. According to this policy, a web browser allows scripts from one webpage to access the contents of another webpage provided both the pages have the same origin. The origin refers to a combination of the URL scheme, hostname, and port number.
The same Origin Policy prevents a malicious script on one page to access sensitive data on another webpage.
Consider a JavaScript program used by google.com. This test application can access all Google domain pages like google.com/login, google.com/mail, etc. However, it cannot access pages from other domains like yahoo.com
Selenium RC was introduced to address this. The server acts as a client configured HTTP proxy and "tricks" the browser into believing that Selenium Core and the web application being tested come from the same origin.
Selenese is the set of Selenium commands which are used to test your web application. The tester can test the broken links, the existence of some object on the UI, Ajax functionality, alerts, window, list options, and a lot more using Selenese.
Action: Commands which interact directly with the application
Accessors: Allow the user to store certain values to a user-defined variable
Assertions: Verifies the current state of the application with an expected state
Locator is a command that tells Selenium IDE which GUI elements ( say Text Box, Buttons, Check Boxes, etc) it needs to operate on. Locators specify the area of action.
Locator by ID: It takes a string parameter which is a value of the ID attribute which returns the object to findElement() method.
driver.findElement(By.id(“user”));
Locator by the link: If your targeted element is a link text then you can use the by.linkText locator to locate that element.
driver.findElement(By.linkText(“Today’s deals”)).click();
Locator by Partial link: The target link can be located using a portion of text in a link text element.
driver.findElement(By.linkText(“Service”)).click();
Locator by Name: The first element with the name attribute value matching the location will be returned.
driver.findElement(By.name(“books”).click());
Locator by TagName: Locates all the elements with the matching tag name
driver.findElement(By.tagName(“button”).click());
Locator by classname: This finds elements based on the value of the CLASS attribute. If an element has many classes then this will match against each of them.
driver.findElement(By.className(“inputtext”));
Locator by XPath: It takes a parameter of String which is a XPATHEXPRESSION and it returns an object to findElement() method.
driver.findElement(By.xpath(“//span[contains(text(),’an account’)]”)).getText();
Locator by CSS Selector: Locates elements based on the driver’s underlying CSS selector engine.
driver.findElement(By.cssSelector(“input#email”)).sendKeys(“myemail@email.com”);
Implicit wait - Implicit wait commands Selenium to wait for a certain amount of time before throwing a “No such element” exception.
driver.manage().timeouts().implicitlyWait(TimeOut, TimeUnit.SECONDS);
Explicit wait - Explicit wait is used to tell the Web Driver to wait for certain conditions before throwing an "ElementNotVisibleException" exception.
WebDriverWait wait = new WebDriverWait(WebDriver Reference, TimeOut);
Fluent wait - It is used to tell the web driver to wait for a condition, as well as the frequency with which we want to check the condition before throwing an "ElementNotVisibleException" exception.
Wait wait = new FluentWait(WebDriver reference).withTimeout(timeout, SECONDS).pollingEvery(timeout, SECONDS).ignoring(Exception.class);
driver.navigate().to("https://www.ebay.in/"); - Navigates to the provided URL
driver.navigate().refresh(); - This method refreshes the current page
driver.navigate().forward(); - This method does the same operation as clicking on the Forward Button of any browser. It neither accepts nor returns anything.
driver.navigate().back(); - This method does the same operation as clicking on the Back Button of any browser. It neither accepts nor returns anything.
driver.close()
This command closes the browser’s current window. If multiple windows are open, the current window of focus will be closed.
driver.quit()
When quit() is called on the driver instance and there are one or more browser windows open, it closes all the open browser windows.
sendKeys() is the method used to type text in input boxes
Consider the following example -
WebElement email = driver.findElement(By.id(“email”)); - Finds the “email” text using the ID locator
email.sendKeys(“abcd.efgh@gmail.com”); - Enters text into the URL field
WebElement password = driver.findElement(By.id(“Password”)); - Finds the “password” text using the ID locator
password.sendKeys(“abcdefgh123”); - Enters text into the password field
driver.findElement(By.linkText(“Today’s deals”)).click();
The command finds the element using link text and then clicks on that element, where after the user would be redirected to the corresponding page.
driver.findElement(By.partialLinkText(“Service”)).click();
The above command finds the element based on the substring of the link provided in the parenthesis and thus partialLinkText() finds the web element.
scrollBy() method is used to scroll down the webpage
General syntax:
executeScript("window.scrollBy(x-pixels,y-pixels)");
First, create a JavaScript object
JavascriptExecutor js = (JavascriptExecutor) driver;
Launch the desired application
driver.get(“https://www.amazon.com”);
Scroll down to the desired location
js.executeScript("window.scrollBy(0,1000)");
The window is not scrolled vertically by 1000 pixels
Get the title of the webpage and store in a variable
String actualTitle = driver.getTitle();
Type in the expected title
String expectedTitle = “abcdefgh";
Verify if both of them are equal
if(actualTitle.equalsIgnoreCase(expectedTitle))
System.out.println("Title Matched");
else
System.out.println("Title didn't match");
Alternatively,
Assert.assertEquals(actualTitle, expectedTitle);
Actions class utility is used to hover over a web element in Selenium WebDriver
Instantiate Actions class.
Actions action = new Actions(driver);
In this scenario, we hover over search box of a website
actions.moveToElement(driver.findElement(By.id("id of the searchbox"))).perform();
Master important testing concepts such as TestNG, Selenium IDE, Selenium Grid, Selenium WebDriver. Check out Selenium Certification Training. Enroll now!
getCssValue() method is used to retrieve CSS properties of any web element
General Syntax:
driver.findElement(By.id(“id“)).getCssValue(“name of css attribute”);
Example:
driver.findElement(By.id(“email“)).getCssValue(“font-size”);
Every webpage of the application has a corresponding page class that is responsible for locating the web elements and performing actions on them. Page Object Model is a design pattern that helps create object repositories for the web elements. POM improves code reusability and readability. Multiple test cases can be run on the object repository.
No, Selenium cannot automate Captcha. Well, the whole concept of Captcha is to ensure that bots and automated programs don’t access sensitive information - which is why, Selenium cannot automate it. The automation test engineer has to manually type the captcha while other fields can be filled automatically.
Selenium was designed to handle web applications. Windows-based features are not natively supported by Selenium. However, third-party tools like AutoIT, Robot, etc can be integrated with Selenium to handle pop-ups and other Windows-based features.
TakeScreenshot interface can be used to take screenshots in WebDriver.
getScreenshotAs() method can be used to save the screenshot
File scrFile = ((TakeScreenshot)driver).getScreenshotAs(outputType.FILE);
Yes! Text can be entered into a textbox using JavaScriptExecutor
JavascriptExecutor jse = (JavascriptExecutor) driver;
jse.executeScript("document.getElementById(‘email').value=“abc.efg@xyz.com”);
Select class in WebDriver is used for selecting and deselecting options in a dropdown.
The objects of Select type can be initialized by passing the dropdown webElement as a parameter to its constructor.
WebElement testDrop = driver.findElement(By.id("testingDropdown"));
Select dropdown = new Select(testDrop);
WebDriver offers three ways to select from a dropdown:
selectByIndex: Selection based on index starting from 0
dropdown.selectByIndex(5);
selectByValue: Selection based on value
dropdown.selectByValue(“Books”);
selectByVisibleText: Selection of option that displays text matching the given argument
dropdown.selectByVisibleText(“The Alchemist”);
switchTo() command is used to switch between windows, frames or pop-ups within the application. Every window instantiated by the WebDriver is given a unique alphanumeric value called “Window Handle”.
Get the window handle of the window you wish to switch to
String handle= driver.getWindowHandle();
Switch to the desired window
driver.switchTo().window(handle);
Alternatively
for(String handle= driver.getWindowHandles())
{ driver.switchTo().window(handle); }
You can achieve this by using sendkeys() or Robot class method. Locate the text box and set the file path using sendkeys() and click on submit button
Locate the browse button
WebElement browse =driver.findElement(By.id("uploadfile"));
Pass the path of the file to be uploaded using sendKeys method
browse.sendKeys("D:\\SeleniumInterview\\UploadFile.txt");
The window size can be maximized, set or resized
To maximize the window
driver.manage().window().maximize();
To set the window size
Dimension d = new Dimension(400,600);
driver.manage().window().setSize(d);
Alternatively,
The window size can be reset using JavaScriptExecutor
((JavascriptExecutor)driver).executeScript("window.resizeTo(1024, 768)");
findElement() is used to access any single element on the web page. It returns the object of the first matching element of the specified locator.
General syntax:
WebElement element = driver.findElement(By.id(example));
findElements() is used to find all the elements in the current web page matching the specified locator value. All the matching elements would be fetched and stored in the list of Web elements.
General syntax:
List <WebElement> elementList = driver.findElements(By.id(example));
The user can use this feature to handle exceptions by clicking the pause icon on the top right corner of the IDE. When the script finds an exception it pauses at that particular statement and enters a debug mode. The entire test case does not fail and hence the user can rectify the error immediately.
To handle authentication pop-ups, verify its appearance and then handle them using an explicit wait command.
Use the explicit wait command
WebDriverWait wait = new WebDriverWait(driver, 10);
Alert class is used to verify the alert
Alert alert = wait.until(ExpectedConditions.alertIsPresent());
Once verified, provide the credentials
alert.authenticateUsing(new UserAndPassword(<username>, <password>));
Single slash is used to create Xpath with an absolute path i.e. the XPath would be created to start selection from the start node.
/html/body/div[2]/div[1]/div[1]/a
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
//div[class="qa-logo"]/a
When we use driver.get() method to navigate to a URL, it will respond with a status of 200-OK
200 – OK denotes that the link is working and it has been obtained. If any other status is obtained, then it is an indication that the link is broken.
Some of the HTTP status codes are :
As a starter, obtain the links from the web application, and then individually get their status.
Navigate to the interested webpage for e.g. www.amazon.com
Collect all the links from the webpage. All the links are associated with the Tag ‘a‘
List<WebElement> links = driver.findElements(By.tagName("a"));
Create a list of type WebElement to store all the Link elements in it.
for(int i=0; i<links.size(); i++) {
WebElement element = links.get(i);
String url=element.getAttribute("href");
verifyLink(url); }
Now Create a Connection using URL object( i.e ., link)
URL link = new URL(urlLink);
Connect using Connect Method
HttpURLConnection httpConn =(HttpURLConnection)link.openConnection();
Use getResponseCode () to get response code
if(httpConn.getResponseCode()!== 200)
Through exception, if any error occurred
System.out.println(“Broken Link”);
After going through these Selenium interview questions, you would have understood, what kind of questions can be asked and how to answer them.
We have an industry expert who illustrates certain pieces of code while explaining how to answer the questions. If you wish to embark on your journey as a test automation engineer, then here’s a certification course that will come in handy. Check out Simplilearn’s Selenium training course. This training is designed to train developers and manual testers to learn how to automate web applications with a robust framework, and integrate it within the DevOps processes of an organization, and help you master important concepts such as TestNG, Selenium IDE, and Selenium Grid.
Pankaj Kumar is an Associate Product Manager at Simplilearn, with 5+ years of experience. He is a transformation leader with rich experience in Project Management, Account Management, Business Development and Product Management.
Full Stack Java Developer
Selenium 3.0 Training
*Lifetime access to high-quality, self-paced e-learning content.
Java Programming: The Complete Reference You Need
Blockchain Career Guide: A Comprehensive Playbook To Becoming A Blockchain Developer
Who Is a Full Stack Developer?
Java EE Tutorial: All You Need To Know About Java EE
10 Reasons That Explain Why You Need to Learn Java
Free eBook: Salesforce Developer Salary Report