when you automate any application we do not want to share the password to outside the world. So, we will use Base64 class of the Java to encode and decode strings or passwords to use securely. In this article I will show you a practical selenium program to achieve the same thing how to encode the password and use the same to log into the application.
A headless browser is a browser simulation program that does not have a user interface (UI less).
Headless browser programs operate like any other browser, but do not display any UI. Selenium executes its' tests in the background.
There are several headless browsers available in the market, the following are the most popular ones:
/*So the test gets pass all the time because the sequence in the originalList and tempList is going to be same. If you are following above process then your test never fails, because When you change one list, it changes the other list as well.*/
if (originalList == tempList) { System.out.println("Dropdown sorted"); } else { System.out.println("Dropdown NOT sorted"); } driver.close(); }
}
So the test gets pass all the time because the sequence in the originalList and tempList is going to be same.
If you are following above process then your test never fails, because When you change one list, it changes the other list as well.
How to check the options in drop down are sorted order or not
Step1: Create a List tempList variable Step2: While iterating the option in the dropdown, add values to tempList (along with originalList) Step3: Now sort the tempList, sorting of tempList will not affect the originalList because we have created two different objects Step4: Compare the two Lists
What is an API? API is means Application Programming Interface. It enables communication and data exchange between two separate software systems. A software system implementing an API contains functions/sub-routines which can be executed by another software system. What is API testing? API Testing is entirely different from GUI Testing and mainly concentrates on the business logic layer of the software architecture. This testing won't concentrate on the look and feel of an application. Instead of using standard user inputs(keyboard) and outputs, in API Testing, you use software to send calls to the API, get output, and note down the system's response. API Testing requires an application to interact with API. In order to test an API, you will need to Use Testing Tool to drive the API Write your own code to test the API
What is Web Service? Web Service available over the web which Enables communication between applications over the web, Provides a standard protocol/format for communication Why we use it? Platform independent communication - using web services two different applications (implementation) can talk to each other and exchange data/information
Difference between API & Web service Web Service is an API wrapped in HTTP. All Web Services are API but APIs are not Web Services. Web Service might not perform all the operations that an API would perform. A Web Service needs a network while an API doesn't need a network for its operation. What is WSDL? WSDL stands for Web Services Description Language, an XML-based language that describes Web services and how to access and locate them. What is UDDI? UDDI stands for Universal Description, Discovery and Integration. It is an open, Internet-based specification that offers directory service for storing information about web services. Types of Web Services There are mainly two types of web services.
SOAP web services. (Simple Object Access Protocol)
RESTful web services. (Representational State Transfer)
SOAP (Simple Object Access Protocol) – SOAP is a protocol which was designed before REST and came into the picture. The main idea behind designing SOAP was to ensure that programs built on different platforms and programming languages could exchange data in an easy manner. REST – This was designed specifically for working with components such as media components, files, or even objects on a particular hardware device. Any web service that is defined on the principles of REST can be called a RestFul web service. A Restful service would use the normal HTTP verbs of GET, POST, PUT and DELETE for working with the required components. HTTP V/S HTTPS What Is HTTP? HTTP stands for Hypertext Transfer Protocol. At it’s most basic, it allows for the communication between different systems. It’s most commonly used to transfer data from a web server to a browser in order to allow users to view web pages. It’s the protocol that was used for basically all early websites. What Is HTTPS? HTTPS stands for Hypertext Transfer Protocol Secure. The problem with the regular HTTP protocol is that the information that flows from server to browser is not encrypted, which means it can be easily stolen. HTTPS protocols remedy this by using an SSL (secure sockets layer) certificate, which helps create a secure encrypted connection between the server and the browser, thereby protecting potentially sensitive information from being stolen as its transferred between the server and the browser.
Ques.101. How can we run a Test method multiple times in a loop(without using any data provider)? Ans.
Using invocationCount parameter and setting its value to an integer
value, makes the test method to run n number of times in a loop.
Ques.102. What is the default priority of test cases in TestNG? Ans.
The default priority of test when not specified is integer value 0. So,
if we have one test case with priority 1 and one without any priority
then the test without any priority value will get executed first (as
default value will be 0 and tests with lower priority are executed
first). Ques.103. What is the difference between soft assertion and hard assertion in TestNG? Ans.
Soft assertions (SoftAssert) allows us to have multiple assertions
within a test method, even when an assertion fails the test method
continues with the remaining test execution. The result of all the assertions can be collated at the end using softAssert.assertAll() method. Here,
even though the first assertion fails still the test will continue with
execution and print the message below the second assertion. Hard
assertions on the other hand are the usual assertions prodived by
TestNG. In case of hard assertion in case of any failure, the test
execution stops, preventing execution of any further steps within the
test method.
Ques.104. How to fail a testNG test if it doesn't get executed within a specified time? Ans. We can use timeOut attribute of @Test annotation. The
value assigned to this timeOut attribute will act as an upperbound, if
test doesn't get executed within this time frame then it will fail with
timeOut exception.
Ques.105. How can we skip a test case conditionally? Ans.
Using SkipException, we can conditionally skip a test case. On throwing
the skipException, the test method marked as skipped in the test
execution report and any statement after throwing the exception will not
get executed.
Ques.106. How can we make sure a test method runs even if the test methods or groups on which it depends fail or get skipped? Ans.
Using "alwaysRun" attribute of @Test annotation, we can make sure the
test method will run even if the test methods or groups on which it
depends fail or get skipped. Here, even though the parentTest failed,
the dependentTest will not get skipped instead it will executed because
of "alwaysRun=true". In case, we remove the "alwaysRun=true" attribute
from @Test then the report will show one failure and one skipped test,
without trying to run the dependentTest method.
Ques.107. Why and how will you use an Excel Sheet in your project? The
reason we use Excel sheets is because it can be used as data source for
tests. An excel sheet can also be used to store the data set while
performing DataDriven Testing. Ques.108. How can you redirect browsing from a browser through some proxy? Selenium provides a PROXY class to redirect browsing from a proxy. Look at the example below:
Ques.109. How to scroll down a page using JavaScript in Selenium? We can scroll down a page by using window.scrollBy() function. Example: ((JavascriptExecutor) driver).executeScript("window.scrollBy(0,500)") Ques.110. How to scroll down to a particular element? To scroll down to a particular element on a web page, we can use the function scrollIntoView(). Example: ((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView();", element);
Ques.111. How to set the size of browser window using Selenium? To
maximize the size of browser window, you can use the following piece of
code:driver.manage().window().maximize(); – To maximize the window To resize the current window to a particular dimension, you can use the setSize() method.
Ques.112. Can we enter text without using sendKeys()? Yes. We can enter/ send text without using sendKeys() method. We can do it using JavaScriptExecutor.
Ques.113. Explain how you will login into any site if it is showing any authentication popup for username and password? Since
there will be popup for logging in, we need to use the explicit command
and verify if the alert is actually present. Only if the alert is
present, we need to pass the username and password credentials. The sample code:
Ques.114. Explain what is Group Test in TestNG? In
TestNG, methods can be categorized into groups. When a particular group
is being executed, all the methods in that group will be executed. We
can execute a group by parameterizing it’s name in group attribute
of @Test annotation. Example: @Test(groups={“xxx”})
Ques.115. How To Run Failed Test Cases Using TestNG In Selenium WebDriver By using “testng-failed.xml” Ques.116. What is Stale Element Exception? How to handle it? Stale means old, decayed, no longer fresh. Stale Element means an old element or no longer available element. Assume
there is an element that is found on a web page referenced as a
WebElement in WebDriver. If the DOM changes then the WebElement goes
stale. If we try to interact with an element which is staled then
the StaleElementReferenceException is thrown. When this happens you will need to refresh your reference, or find the element again. Ques.117. What are different XPath functions that you have used in your Project? Contains() Using OR & AND Start-with() function Text()
Ques.118. What will happen in background when execute new FirefoxDriver() ? Firefox binary will be triggered and Fiefox browser will open with default options. FirefoxDriver object is created Ques.119. What is the below statement means and Why?WebDriver driver = new FirefoxDriver(); WebDriver is an interface which contain several abstract methods such as get(...), findElamentBy(...) etc. We
simply create reference of web Driver and we can assign objects
(Firefox driver, ChromeDriver, IEDriver, Andriod driver etc) to it.
Ques.120. How do you handle inner Frames and Adjacent Frames? SwitchTo frame1, SwitchTo frame2 (inner frame) work on the element and switchto default content Use SwitchTo frame to move the control inside frame. Ques.121. How to click on an element which is not visible using selenium WebDriver? We can use JavascriptExecutor to click.
WebElement element = driver.findElement(By.id("gbqfd")); JavascriptExecutor executor = (JavascriptExecutor)driver; executor.executeScript("arguments[0].click();", element);
Ques.122. Difference between verify and assert? Assert: Assert
command checks if the given condition is true or false. If the
condition is true, the program control will execute the next phase of
testing, and if the condition is false, execution will stop and nothing
will be executed. Verify: Verify command also checks if the given
condition is true or false. It doesn't halts program execution i.e. any
failure during verification would not stop the execution and all the
test phases would be executed. Ques.123. What is the use of @FindBy annotation? @FindBy is used to identify element in the Page Factory approach. Ques.124. Do you use Thread.sleep? Rarely Ques.125. What are different pop-ups that you have handle in your projects? JavaScript Pop Alert alert = driver.switchTo().alert(); Browser Pop Ups Browser Profiles, Robot Class, AutoIT, Sikuli Native OS Pop Ups Browser Profiles, Robot Class, AutoIT, Sikuli
The API Testing is performed for the application, which has a collection of API that must be tested. API calls verify functionality and expose failure of application. API testing is strongly connected with Back-end/Database testing, you may have brief knowledge of SQL queries. (That would be an advantage )
Selenium Grid is a tool that distributes the tests across multiple physical or virtual machines so that we can execute scripts in parallel (simultaneously). It dramatically accelerates the testing process across browsers and across platforms by giving us quick and accurate feedback.
Selenium Grid allows us to execute multiple instances of WebDriver or Selenium Remote Control tests in parallel which uses the same code base, hence the code need NOT be present on the system they execute. The selenium-server-standalone package includes Hub, WebDriver, and Selenium RC to execute the scripts in grid.
Hive is a data warehouse infrastructure tool to process structured data in Hadoop.
Initially Hive was developed by Facebook, later the Apache Software Foundation took it up and developed it further as an open source under the name Apache Hive.
It stores schema in a database and processed data into HDFS.
It is designed for OLAP not for OLTP.
It provides SQL type language for querying called HiveQL or HQL.
Hive is not RDBMS.
Hive is a system for managing and querying un-structured data into structured format. It uses the concept of Map Reduce for execution.
Answer: My expectation from you company would be I will have more challenges and new things to learn and whatever the skills I have to contribute, hopefully, I will be able to contribute if they are in any way helpful to enhance productivity of the company.
Answer: Similar to system testing, the *macro* end of the test scale is testing a complete application in a situation that mimics real world use, such as interacting with a database, using network communication, or interacting with other hardware, application, or system.
1. What are the different matrices that you follow?
Answer: There are various reports we normally prepare in QA:
Test summary Report – It is a report that has list of the total test cases, list of executed test cases, remaining test case to be executed, executed date, pass/fail
Answer : A bug is a bug is an error, flaw, mistake, failure, or fault in a computer code (program) that prevents it from behaving as intended (e.g., producing an incorrect result). (You can also add this: When the expected results (accordingly to the requirement documents) don’t match with the actual results (while testing), then it is considered a bug)
1. Are you better working in a team or working alone?
Answer: I am a team player. I get along with team members very well. As far as the working is concerned, I can be equally productive in team or working alone.
1. Are Test Plan and Test Strategy same type of documents?
Answer:No, they are different documents. A Test Plan is a document that collects and organizes test cases by functional areas and/or types of testing in a form that can be presented to the other teams and/or customer (see the definition on this page for Test Plan) where as the Test Strategy (see the definition in the above question) is the documented approach to testing. The tester prepares test Plan whereas the Manager or lead prepares the Test Strategy. Both are important pieces of Quality Assurance processes since they help communicate the test approach scope and ensure test coverage while improving the efficiency of the testing effort.
Answer:In my QA career, I have been working on various system platforms and operating systems like Windows 95, Windows 2000, Windows XP and UNIX. I have tested applications developed in Java, C++, Visual Basic and so on. I have tested Web-based applications as well as client server applications.