Most answered questions in Selenium

0 votes
1 answer

How can I clear text of a textbox using Python Selenium WebDriver?

Hi Sonakshi, we can clear text of ...READ MORE

Jul 31, 2019 in Selenium by Anvi
• 14,150 points
12,389 views
0 votes
1 answer

How can I fetch value/text from a textbox by using Python Selenium Webdriver?

Hey Jagat, following test script shows how ...READ MORE

Jul 31, 2019 in Selenium by Abha
• 28,140 points
6,080 views
0 votes
1 answer

How to send keyboard input to a textbox on a webpage using python selenium webdriver?

Hey Dominic, you can use sendKeys() method ...READ MORE

Jul 31, 2019 in Selenium by Abha
• 28,140 points
8,611 views
0 votes
1 answer

Can anyone help me with Zomato login test script using Python Selenium Webdriver?

Hi Laxmikant, if you want to write ...READ MORE

Jul 29, 2019 in Selenium by Anvi
• 14,150 points
1,858 views
0 votes
1 answer

How to perform double click using mouse actions in Selenium with Python?

Hi harsh, you can use ActionChains() class ...READ MORE

Jul 29, 2019 in Selenium by Abha
• 28,140 points
1,971 views
0 votes
1 answer

Which methods which can be used to handle pop-up and alerts in Python Selenium Webdriver?

Hey Kishor, Python Selenium webdriver provides following ...READ MORE

Jul 29, 2019 in Selenium by Abha
• 28,140 points
735 views
0 votes
1 answer

How a prompt alert can be handled in Python Selenium Webdriver?

Hey Duran, you can handle a prompt ...READ MORE

Jul 30, 2019 in Selenium by Abha
• 28,140 points
1,300 views
0 votes
1 answer

How to refresh a webpage using python selenium webdriver?

Hey Shaurya, the code snippet below shows ...READ MORE

Jul 29, 2019 in Selenium by Anvi
• 14,150 points
20,327 views
0 votes
1 answer

How can I capture full webpage screenshot using Selenium Webdriver?

Hey Harbhajan, you can use Ashot() to ...READ MORE

Jul 29, 2019 in Selenium by Anvi
• 14,150 points
4,366 views
0 votes
1 answer

Is it possible to take screenshot of only viewable area of a webpage using Python Selenium?

Hi Gulzar, to understand how capturing of ...READ MORE

Jul 29, 2019 in Selenium by Anvi
• 14,150 points
1,450 views
0 votes
1 answer

How to switch different browser tabs using Python Selenium?

Hello Rohan, you can use the following ...READ MORE

Jul 29, 2019 in Selenium by Abha
• 28,140 points

edited Apr 18, 2022 by Sarfaraz 7,461 views
0 votes
1 answer

How can I manually set proxy settings in Python Selenium?

Hi Jyotsana, you can manually set proxy ...READ MORE

Jul 29, 2019 in Selenium by Abha
• 28,140 points
22,043 views
0 votes
1 answer

How to get coordinates of a web element using Python Selenium?

Hey Ushma, you can use following code ...READ MORE

Jul 29, 2019 in Selenium by Abha
• 28,140 points
3,054 views
0 votes
1 answer

How to find size of an element in a webpage with Python Selenium Webdriver?

Hey Fawad, you can use this piece ...READ MORE

Jul 29, 2019 in Selenium by Anvi
• 14,150 points
6,597 views
0 votes
1 answer

Can we perform zoom-in or zoom-out actions in a webpage using Python Selenium?

Hello Ruhi, to perform Zoom-in or Zoom-out ...READ MORE

Jul 29, 2019 in Selenium by Anvi
• 14,150 points
11,227 views
0 votes
1 answer

How to perform scroll operations on a webpage using Python-Selenium Webdriver?

Hey Juhi, look at the below code ...READ MORE

Jul 29, 2019 in Selenium by Anvi
• 14,150 points
9,113 views
0 votes
1 answer

How can we use Explicit wait with Python Selenium Webdriver?

Hi Aryan, Explicit wait is used with ...READ MORE

Jul 29, 2019 in Selenium by Abha
• 28,140 points
3,865 views
0 votes
1 answer

Can we select elements by CSS selectors in Python Selenium Webdriver?

Hi Suhana, you can use CSS Selectors ...READ MORE

Jul 29, 2019 in Selenium by Abha
• 28,140 points
3,247 views
0 votes
1 answer

Is there a way to handle checkboxes and radio buttons using Python Selenium?

Hi Jessica, you can try these lines ...READ MORE

Jul 23, 2019 in Selenium by Anvi
• 14,150 points
1,282 views
0 votes
1 answer

In what ways we can handle dropdown menu in a page using Selenium with Python?

Hello Tushar, if by handling Dropdown you ...READ MORE

Jul 24, 2019 in Selenium by Abha
• 28,140 points
1,653 views
0 votes
1 answer

How can I perform mouse hover action in Selenium-Python?

Hey Payal, use the code snippet shown ...READ MORE

Jul 24, 2019 in Selenium by Abha
• 28,140 points
16,742 views
0 votes
1 answer

How to capture source code of a webpage in Selenium using Python?

Hi Hansika, you can capture the source ...READ MORE

Jul 24, 2019 in Selenium by Anvi
• 14,150 points
2,219 views
0 votes
1 answer

How can I return value from javascript code in Selenium Webdriver?

Hey Kundan, you can use the return ...READ MORE

Jul 23, 2019 in Selenium by Abha
• 28,140 points
4,670 views
0 votes
1 answer

How to get details of a webpage like url, title name, domain name etc using Javascript Executor?

Hey Nitya, you can use executeScript() method ...READ MORE

Jul 23, 2019 in Selenium by Abha
• 28,140 points
11,849 views
0 votes
1 answer

How javascript code can be executed in Selenium Webdriver?

Hey Veena, execute_script is used to execute ...READ MORE

Jul 23, 2019 in Selenium by Anvi
• 14,150 points
605 views
0 votes
1 answer

Is there any alternate way of refreshing a web page other than refresh() method in Selenium?

HI Parineeti, to refresh a webpage, we ...READ MORE

Jul 23, 2019 in Selenium by Anvi
• 14,150 points
2,193 views
0 votes
1 answer

How can I get meta-description of a webpage using Selenium Webdriver?

Hey Sonal, to get the meta-description of ...READ MORE

Jul 23, 2019 in Selenium by Abha
• 28,140 points
5,381 views
0 votes
1 answer

How to create Custom wait library for handling synchronization in Selenium Webdriver?

Hi Sushmita, to solve Synchronization issue in ...READ MORE

Jul 23, 2019 in Selenium by Anvi
• 14,150 points
1,700 views
0 votes
1 answer

Can anyone suggest how can I use Explicit wait in my automation test cases using Webdriver?

Hi Inder, you can use Explicit wait ...READ MORE

Jul 23, 2019 in Selenium by Abha
597 views
0 votes
1 answer

I want to implement Fluent Wait in my test script, but I am new to Selenium and don't know much about Waits. Can anyone please help?

Hey Indu, Fluent wait is a class which ...READ MORE

Jul 23, 2019 in Selenium by Abha
• 28,140 points
1,863 views
0 votes
1 answer

How to automate radio button and checkbox on a webpage in Selenium Webdriver?

Hey Yashmita, following code snippet automates the ...READ MORE

Jul 23, 2019 in Selenium by Anvi
• 14,150 points
2,112 views
0 votes
1 answer

How can I perform multi-browser testing using Selenium TestNG?

Hi Nutan, you can use TestNG to ...READ MORE

Jul 22, 2019 in Selenium by Abha
• 28,140 points
1,958 views
0 votes
1 answer

What are the different methods (APIs) provided by Selenium Webdriver to take screenshot of a webpage?

Hey Hemant, Selenium Webdriver provides 3 different ...READ MORE

Jul 22, 2019 in Selenium by Abha
• 28,140 points
2,762 views
0 votes
1 answer

How can I parallely execute automation tests using Selenium Grid?

Hello Urmila, to parallelly execute automation tests ...READ MORE

Jul 22, 2019 in Selenium by Anvi
• 14,150 points
710 views
0 votes
1 answer

How to measure page load time of a website using Selenium-Python?

Hello Damodar, following test script allows you ...READ MORE

Jul 22, 2019 in Selenium by Anvi
• 14,150 points
11,274 views
0 votes
1 answer

How to switch between tabs on a browser and get titles of each tab using Selenium?

Hi Abhimanyu, you can use following code ...READ MORE

Jul 22, 2019 in Selenium by Abha
• 28,140 points
9,507 views
0 votes
1 answer
+1 vote
1 answer

How can I capture network traffic of a specific page using Selenium?

Hey, to capture network network traffic of ...READ MORE

Jul 19, 2019 in Selenium by Abha
• 28,140 points
22,494 views
0 votes
1 answer

How to handle Bootstrap dropdown in Selenium Webdriver?

Hi Neeru, Bootstrap dropdown isn't like traditional ...READ MORE

Jul 19, 2019 in Selenium by Anvi
• 14,150 points
4,895 views
0 votes
1 answer

How can I capture Tooltip in Selenium Webdriver?

Hey Diljeet, following test script allows you ...READ MORE

Jul 19, 2019 in Selenium by Anvi
• 14,150 points
1,553 views
0 votes
1 answer

How to start Firefox browser on Mac using Selenium Webdriver?

Hey Tom, you can use following commands ...READ MORE

Jul 18, 2019 in Selenium by Abha
• 28,140 points
1,419 views
0 votes
1 answer

How can firefox driver be installed and configured on MacOS?

Hi Urvashi, follow these steps to download ...READ MORE

Jul 18, 2019 in Selenium by Anvi
• 14,150 points
3,777 views
0 votes
1 answer

How to launch Chrome browser using Selenium Webdriver on MAC?

Hey Lucas, you can launch chrome browser ...READ MORE

Jul 18, 2019 in Selenium by Abha
• 28,140 points
5,025 views
0 votes
1 answer

How can I integrate Selenium with Maven project?

Hey Vicky, follow these steps to integrate ...READ MORE

Jul 17, 2019 in Selenium by Abha
• 28,140 points
2,139 views
0 votes
1 answer

How to download and install Maven to integrate with Selenium?

Hey Henry, follow these steps to download ...READ MORE

Jul 18, 2019 in Selenium by Abha
• 28,140 points
2,291 views
0 votes
1 answer

How to create a Base Class in Selenium and use it with test scripts?

Hi Donna, you can use following code ...READ MORE

Jul 18, 2019 in Selenium by Anvi
• 14,150 points
12,086 views
0 votes
1 answer

What is Base class in Selenium and how it works?

Hey Prashant, in Selenium Base class is the main ...READ MORE

Jul 18, 2019 in Selenium by Abha
• 28,140 points
19,178 views
0 votes
1 answer

How to install Apache Ant to configure it with Selenium Webdriver?

Hey Surbhi, you need to follow these ...READ MORE

Jul 17, 2019 in Selenium by Anvi
• 14,150 points
634 views
0 votes
1 answer

What are the differences between POM and PageFactory in Selenium Webdriver?

Hi Raveena, Page Object Model (POM) and ...READ MORE

Jul 17, 2019 in Selenium by Anvi
• 14,150 points
28,533 views
0 votes
1 answer

How to configure Selenium Grid with complete Hub and Node setup?

Yes it is possible to configure Selenium ...READ MORE

Jul 26, 2019 in Selenium by Karan
• 160 points
1,642 views