Python Selenium Interview Question
Python Selenium Interview Question
To generate test data; parse test results; generate reports; testing API calls etc.
Python to extract requirements from a Word document.
For testing tasks automation, setting up environments for tests, extracting performance data, etc…
Testers use Python extensively in many companies with Selenium for test automation.
For writing desktop applications used by testers.
Test data manipulation.
To build test environment
Testing with IronPython on .NET
Ans:
Framework called Web2py, PAMIE (Python automation Module for I. E.), The pytest framework
4) What Tools That Helps Python Development Do You Know?
Ans:
There are good tools for helping Python development such as Notepad++ with the PyNPP plugin and Eclipse
with PyDev and PyUnit
5) What Is A “Unittest” In Python?
Ans:
The unit testing framework of Python is known as “unittest”. It supports the sharing of setups, automation
testing, shutdown code for tests, aggregation of tests into collections, among others.
6) How Python Is Interpreted?
Ans:
Python language is an interpreted language. The Python program runs directly from the source code. It
converts the source code that is written by the programmer into an intermediate language, which is again
translated into machine language that has to be executed.
7) What Is The Difference Between “xrange” And “range”?
Ans:
“Xrange” returns the “Xrange” object while range returns the “list” irrespective of the size of the “range”.
8) Define “module” And “package”?
Ans:
Each Python program file is a “module”, which imports other modules like “objects” and “attributes”.
A Python program folder is a “package” of “modules”. A package can have “modules” or “subfolders”.
Ans:
The executable path is not set properly.
10) What are the commands for downloading selenium?
Ans:
11) How can we know that our python is properly installed or not?
Ans:
pip –version
12) How can we implement unit test framework in our scripts?
Ans:
By using:- import unittest
13) What are the different locators used?
Ans:
1. Tag name
2. Class name
3. id
4. link text
5. Partial link text
6. CSS Selector
7. XPath
8. Name
Ans:
Xpath.
15) Which is the best locator?
Ans:
The selection of the best locator depends on the web elements or the ui page we are automating.
16) What is the library to be imported to add keyboard actions to our scripts?
Ans:
from selenium.webdriver.common.keys import Keys
17) What is the library to be imported to add mouse actions to our scripts?
Ans:
from selenium.webdriver.common.actionchains import ActionChains
18) What is Selenium?
Ans:
It’s a Automation toolkit
19) What is python?
Ans:
It’s a scripting language, it works as an interpreter and not a compiler
20) What is a locator?
Ans:
It’s an element in web page with which the python script would interact through the selenium driver
21) What is a Webdriver?
Ans:
Selenium provides a tool to interact with the different web browsers. And they control the operation of the
script. Ex: chromedriver, Iedriver, gecko for firefox.
22) What’s XPATH?
Ans:
It is the extensible markup language’s pathfinder where the data is stored in XML format like Key value pair
23) What’s the difference between / and // in xpath?
Ans:
/ : absolute path // relative path
24) What’s explicit and implicit wait?
Ans:
Explicit wait makes the browser wait for a given duration or the condition is true else, it will throw a time
exceeded exception.
Implicit wait- will make the browser wait for a defined time and the execution continues.
Ans:
Selenium with Python Interview Questions and Answers During the script execution if there is a new window
that pops up then they have an address and they have a handle, each handle is listed in the variable handles[]
Ex: To reference those windows driver.switch_window(browser.window(handle[0]))
Ans:
Alerts are the popup windows that you get when there is notification to the user,
To dismiss: alert_var.dismiss()
Ans:
Ans:
1. Find_element_by_id(“username_field”).send_keys(“USERNAME”)
29) What is the difference between close() and quit() func of the browser?
Ans:
Browser.close() will close the current executing window and you can always switch to other window handles
even after closing currently active one.Browser.quit() – will close the complete browser with all the open
windows, this func handle and makes sure the processes are closed and terminated correctly without any
memory leaks.
30) When the webpage is dynamic, which element locator do we use to locate an element?
Ans:
1. driver.findElementByXpath()
Ans:
def functionName: Function body
32) What is an indentation in python?
Ans:
Python does not use braces to indicate the start & stop of function. It uses indentation (Whitespaces) to
make the compiler understand the start & stop of function.
33) What is the syntax for “for” loop if we have to run for loop for 3 times?
Ans:
for 1 in 5:Print(“)
34) What is WebDriver in selenium?
Ans:
WebDriver is a plugin that helps to run selenium test scripts on a web browser.
35)What is the WebDriver used to run selenium script on chrome browser?
Ans:
chrome driver
36) What type of languages can we use to write selenium scripts?
Ans:
37) Can I use selenium for automation scripting without selenium IDE?
Ans:
Yes, selenium can be imported as a module in any other programming platform & write selenium test scripts.
38) What is the use of automation testing?
Ans:
It will reduce manpower & it also reduces the time that we spend on doing Selenium with Python every time.
39) Can we do data-driven testing using selenium?
Ans:
Yes, bypassing values as parameters during run time.
Ans:
No, Selenium is only used as a test automation tool for web driver applications.
41) Why do you prefer to use Python for Selenium?
Ans:
Python is not very large or complicated and one of the easy-to-use programming languages. Python APIs
permit us to connect to the browser through Selenium. Selenium can convey normal Python commands to
various browsers, in spite of the disparities in browser design.
42) What versions are there of Selenium?
Ans:
Ans:
Languages supported are: Java, C #, PHP, Ruby, Python.
44) What kind of tests can we perform with Selenium Webdriver?
Ans:
We can perform functional and regression tests on web applications.
45) What are the limitations of Selenium?
Ans:
The main limitations of selenium are:
You can only perform tests in web applications, not for desktop or mobile. (But other tools are available to
automate desktop application GUI tests.)
Captcha and barcode reading cannot be automated with Selenium. Selenium with Python is needed for them.
The user who is going to perform automatic tests with Selenium Python must have previous knowledge of
Python.
46) What are the different types of locators that we can use to search for an element with Selenium?
Ans:
The locators that we can use with Selenium are ID, Name, ClassName, TagName, LinkText, and Partial
LinkText, XPath, CSS Selector.
47) What is an XPath?
Ans:
Xpath (XML Path Language) is a language that allows you to retrieve information from an XML document by
defining a syntax to set parts in an XML document, allowing you to navigate through its elements and
attributes, as well as allowing basic manipulation of Booleans, numbers, and strings.
48) What is the difference between / and // in an XPath expression?
Ans:
We will use / to start the selection from a node in the document. It allows us to create absolute Xpath
expressions. We will use // to start the selection from anywhere in the document. It allows us to create
relative Xpath expressions.
49) What are the different types of drivers currently supported by Selenium Webdriver?
Ans:
The supported drivers are Gecko driver (new from Selenium 3 to create an instance of FirefoxDriver),
ChromeDriver, InternetExplorerDriver, SafariDriver, OperaDriver, AndroidDriver, IPhoneDriver, and
HtmlUnitDriver.
50) How can we select an option of a dropdown using Selenium Webdriver?
Ans:
To be able to select the value of a dropdown using Selenium Webdriver we have to use the Select class of
Webdriver. Through this class we can select a value of a dropdown by its value, its visible text or its index
number (position).
51) What is Selenium WebDriver
Ans:
Selenium Web driver is a set of classes which automate the web application.
52) Is Selenium Web Driver Automation Tool?
Ans:
No Selenium web Driver is not an Automation tool, it’s a framework or set of classes which is used to
automate a web based application.
53) What kind of application best suited for Selenium and why it should be selected.
Ans:
It is used to automate web based applications and have browser and Platform compatibility. It supports
multiple language such as java, C# and Python
54) Can Selenium Web Services be tested using Selenium?
Ans:
No it is used to automate only web based applications.
55) How Can we launch Different browsers using python?
Ans:
For Chrome
1. driver=Webdriver.Chrome(“PathofChromedriver”)
For Firefox
for IE
1. driver=webdriver.Ie(“Path of IE Driver”)
Ans:
Implicit Wait is used to default waiting time.
58) What is explicit Wait.
Ans:
Explicit Wait is used to halt the execution until condition is met or when time is elapsed.
59) How can I enter the values in the textbox using python?
Ans:
1. driver.find_element(By.ID,”Value”).send_keys(“Value”)
Ans:
1. driver.find_element(By.ID,”Value”).is_enabled()
, this specific method will return if true or false.
61) How can we get the text of a web element.
Ans:
1. driver.find_element(By.ID,”Value”).text
this specific method will return innertext of the control.
62) Is there any other way of retrieving text from a web element.
Ans:
1. driver.find_element(By.ID,”Value”).get_attribute(“InnerText”)
Get On-Demand Selenium With Python Training with Industry Concepts By IT
Experts
Instructor-led Sessions
Ans:
Ans:
it is used to refresh
1. driver.refresh()
1. driver.back()
1. driver.forward()
Ans:
Ans:
No Selenium can’t handle windows pop Up
68) Can selenium handle WebBased Pop Up.
Ans:
1. “driver.switch_to_alert()”
Ans:
1. driver.get_screenshot_as_file(“filename”)
Ans:
Switch classes are used to switch between the different browser,frames and alert pop up.
71) What Action class in selenium
Ans:
ACtion class is a user facing API to achieve complex user action events.
72) How can we perform drag drop in selenium
Ans:
act=ActionChains(driver)
1. act.drag_and_drop(sourcelement,targetelement)
Ans:
with the above method we mouse hover on element, element argument is web element where we need to
mouse hover.
Ans:
Yes we can, selenium provides an Action class in which we can make use of the act.move_by_offset() method
to move the mouse control to specific coordinates.
75) Write a method to read data from a web table for a specific row and column index using selenium.
Ans:
1. def GetData(rowIndex,colIndex):
2. table rows=driver.find_element_by_id(“IdValue”).find_elements_by_tag_name(“tr”)
3. table Definitions=table rows[rowIndex+1].find_elements_by_tag_name(“td”)
4. return table Definitions[colIndex].get_attribute(“innerText”)
Ans:
#Will execute before the execution of each test method
def setUp(self):
pass
def setUpClass(cls):
pass
def tearDown(self):
pass
# will execute after it executes all the test methods.
def tearDownClass(cls):
pass
Ans:
We will use PIP command to install selenium
Pip install selenium Version_Nos
Ans:
pass means no operation to be done
79) How can we convert string to int in python.
Ans:
using int(“23″) to convert to int.
str(23) to convert to string
Ans:
try,except and finally keyword is used to handle the exception
try:
#code
Selenium Sample Resumes! Download & Edit, Get Noticed by Top Employers! DOWNLOAD
Ans:
integer,string,float and complex are the supported data types in python
82) What is MRO in python
Ans:
Method Resolution order is used in inheritance concepts
where class is inheriting multiple classes and in all the parent classes, the same method is defined. Child class
is confused which method to call during run time. So the MRO helps to resolve the issue.
83) How will you identify when a web element doesn’t have any of the unique locators?
Ans:
we can make use of the get_attribute method to get a web element from a list of web elements.
for control in controls:
if control.get_attribute(“attributename”)==”attributeValue”:
Ans:
driver.execute_script(script)
above method will execute the javascript.
Ans:
find_element_by_id(“val”).send_keys(“valuetoebeentered”)
other is using Action Class
act=ActionChains(driver)
send_keys_to_element(control,”Valuetobeenterd”)
Ans:
xpath is used to find the web element in a webpage.
87) What are the different exception in selenium
Ans:
webdriver exception
noalertPresent Exception
nosuchwindow Exception
no such element exception
timeoutexception
Ans:
1. act=ActionChains(driver)
2. act.double_click(control)
Ans:
we can use the “switch_to_window” method to switch between the multiple windows. where in argument
we would be sending the address of the window in the form of string.
90) What is the framework?
Ans:
Framework defines a set of rules or best practices which we can follow in a systematic way to achieve the
desired results.
91) What are the different automation Frameworks
Ans:
92) write a program for the below pattern with only one while loop
Ans:
1. *
2. **
3. ***
4. ****
5. *****
6. ****
7. ***
8. **
9. *
10. > a = 0
12. While(a<=5):
Ans:
Assert it is used to verify the result. If the test case fails then it will stop the execution of the test case there
itself and move the control to another test case.
Verify it is also used to verify the result. If the test case fails then it will not stop the execution of that test
case.
Ans:
Selenium is free and open source, has a large user base and helps communities cross Browser compatibility
(Firefox, Chrome, Internet Explorer, Safari etc.) have great platform compatibility (Windows, Mac OS, Linux
etc.)
supports multiple programming languages (Java, C#, Ruby, Python, Pearl etc.) has fresh and regular
repository developments supports distributed testing
95) What are the testing types that can be supported by Selenium?
Ans:
Selenium supports the following types of testing:
Functional Testing
Regression Testing
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.
97) What is the Java implementation of Python popularly known?
Ans:
Jython.
98) What is used to create unicode strings in Python?
Ans:
Add u before the string u ‘mystring’
99) Explain how python is interpreted.
Ans:
Python program runs directly from the source code. Each type of Python programs is executed code is
required. Python converts source code written by the programmer into intermediate language which is again
translated into the native language machine language that is executed. So Python is an Interpreted language.