Latest questions in Selenium

0 votes
1 answer

How to install and configure PyDev in Eclipse?

Hey Manisha, follow the steps mentioned below ...READ MORE

May 9, 2019 in Selenium by Avantika
14,989 views
0 votes
1 answer

scrape/download file having customize selection using python selenium - stock screener site

Hi YI Wen Edwin, I am glad ...READ MORE

May 9, 2019 in Selenium by Abha
• 28,140 points
2,351 views
0 votes
1 answer

What is Robot Class in selenium webdriver and why it is used?

Hello Akanksha, Robot Class is used for those ...READ MORE

May 9, 2019 in Selenium by Pratibha
• 3,690 points
1,836 views
0 votes
1 answer

Can anyone explain how an AJAX call can be handled in Selenium webdriver?

Hello Megha, to demonstrate how AJAX calls are ...READ MORE

May 9, 2019 in Selenium by Pratibha
• 3,690 points
1,192 views
0 votes
2 answers

What are the wait methods which can be used to handle AJAX calls?

Hi , for Ajax call better to use Explicit ...READ MORE

Sep 3, 2020 in Selenium by Sri
• 3,190 points
1,262 views
0 votes
1 answer

What is Xpath and what are the types of it in Selenium Webdriver?

Hi Piyush, XPath is defined as XML path. It is ...READ MORE

May 9, 2019 in Selenium by Pratibha
• 3,690 points
5,100 views
0 votes
1 answer

Installing Selenium Webdriver with Python package

Hey Hemant, for installing Selenium Webdriver with ...READ MORE

May 8, 2019 in Selenium by Anvi
• 14,150 points
15,215 views
+1 vote
1 answer

What is the working of JSON in Selenium Webdriver Architecture?

JSON stands for JavaScript Object Notation. It is used ...READ MORE

May 8, 2019 in Selenium by Frankie
• 9,830 points
3,087 views
+1 vote
1 answer

How Selenium functions internally when you create a object of driver instance?

Based on the above statements, the Firefox ...READ MORE

May 8, 2019 in Selenium by Frankie
• 9,830 points
1,051 views
+1 vote
1 answer

Is it possible to write data into an excel file using Selenium Webdriver?

Hi Simran, if you want to directly ...READ MORE

May 8, 2019 in Selenium by Abha
• 28,140 points
6,502 views
0 votes
1 answer

How can we read data from an excel sheet in Selenium webdriver?

Hi Tarun, to read data from an ...READ MORE

May 8, 2019 in Selenium by Abha
• 28,140 points
17,214 views
0 votes
1 answer

What is Apache POI in Selenium and what it is used for?

Hi Raj, Apache POI is the most commonly ...READ MORE

May 8, 2019 in Selenium by Abha
• 28,140 points
2,838 views
+1 vote
2 answers

What is the difference between findElement and findElements in Selenium Webdriver?

FindElement Command -This method locates for the ...READ MORE

Feb 11, 2020 in Selenium by anonymous
8,068 views
0 votes
1 answer

How selenium can be used in devops lifecycle?

Hey Catherine, as we know that a ...READ MORE

May 8, 2019 in Selenium by Anvi
• 14,150 points
1,671 views
0 votes
1 answer

How to check the state of a radio button or checkbox in Selenium?

Hey Priya, to check the state of ...READ MORE

May 7, 2019 in Selenium by Pratibha
• 3,690 points
4,173 views
0 votes
1 answer

How to read a JS variable in Selenium Webdriver?

Hi Himanshu, its quite easy to access any ...READ MORE

May 7, 2019 in Selenium by Abha
• 28,140 points
8,521 views
0 votes
1 answer

How Selenium is different from QTP?

Hey Richa, Selenium is different from QTP ...READ MORE

May 7, 2019 in Selenium by Pratibha
• 3,690 points
432 views
0 votes
1 answer

How to mouse hover on a web element using Selenium WebDriver?

Hello Nitin, to automate mouse hovering over ...READ MORE

May 7, 2019 in Selenium by Anvi
• 14,150 points
6,207 views
0 votes
1 answer

How driver.close() and driver.quit() commands are different from each other in Selenium?

Hello Pallavi, Selenium WebDriver’s close() command closes the ...READ MORE

May 7, 2019 in Selenium by Anvi
• 14,150 points
1,814 views
0 votes
1 answer

How many types of Navigation commands are there in Selenium Webdriver?

Hi Rajan, following are the Navigation commands ...READ MORE

May 7, 2019 in Selenium by Abha
• 28,140 points
2,984 views
0 votes
1 answer

How to extract text from a web page using selenium and save it as a text file?

Hello Isha, you can checkout this code ...READ MORE

May 7, 2019 in Selenium by Anvi
• 14,150 points
33,157 views
0 votes
1 answer

What are locators in Selenium and what are the different types of it?

Hi Divya, in Selenium Locators define an ...READ MORE

May 7, 2019 in Selenium by Abha
• 28,140 points
2,384 views
0 votes
2 answers

What are the benefits of using Selenium as an Automation Testing tool?

There is no rule we have to ...READ MORE

Aug 26, 2020 in Selenium by Sri
• 3,190 points
1,832 views
0 votes
1 answer

How to download a file in chrome or mozilla browser using Selenium WebDriver?

Hey Uday, you can write following lines ...READ MORE

May 7, 2019 in Selenium by Pratibha
• 3,690 points
5,050 views
0 votes
0 answers

Unable to pass url in firefox and chrome by using selenium webdriver

Hi All, I am not able to run ...READ MORE

May 1, 2019 in Selenium by anonymous

edited May 2, 2019 by Omkar 1,367 views
0 votes
0 answers

Unable to create a new session using Selenium. JSON Script

I installed Selenium Standalone server and run ...READ MORE

Apr 29, 2019 in Selenium by Daniel
1,150 views
0 votes
0 answers

Only local connections are allowed error message for chrome driver

package sample; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import ...READ MORE

Apr 29, 2019 in Selenium by Pratikhya
• 120 points
7,086 views
0 votes
0 answers
0 votes
0 answers
0 votes
0 answers

How to configure ChromeDriver to initiate the browser in the Headless mode using Selenium?

I'm currently working on a Python script ...READ MORE

Apr 2, 2019 in Selenium by Surya
• 970 points
1,418 views
0 votes
0 answers

I want to provide focus to another window in firefox while switching between two windows

if(BrowserLaunch.browser.equalsIgnoreCase("Firefox")) { WebDriverWait wait = new WebDriverWait(Driver.driver, 120); String parentWin ...READ MORE

Mar 27, 2019 in Selenium by anonymous
777 views
+1 vote
2 answers

How can I delete an element in Selenium using Python?

You can directly delete the node using ...READ MORE

Sep 14, 2019 in Selenium by tonystark
• 500 points
18,891 views
0 votes
2 answers

How to create a Javascript executor for making an element visible in Selenium Webdriver?

document.getElementById("myBtn").disabled = true; READ MORE

Aug 31, 2020 in Selenium by Sri
• 3,190 points
7,957 views
0 votes
1 answer

How to perform web scraping with Selenium?

Hey! The results are in the iframe so, ...READ MORE

Mar 26, 2019 in Selenium by Vaishnavi
• 1,180 points
1,422 views
0 votes
1 answer

Can Selenium help in Database testing?

Here is the answer to your question: Selenium ...READ MORE

Mar 26, 2019 in Selenium by Surya
• 970 points
403 views
+1 vote
1 answer

what is selenium python binding?

Selenium Python bindings provides a simple API ...READ MORE

Mar 25, 2019 in Selenium by Frankie
• 9,830 points
533 views
0 votes
1 answer

Why do you need cross browser testing?

Basically, a simple website is comprised of ...READ MORE

Mar 25, 2019 in Selenium by Frankie
• 9,830 points
347 views
0 votes
2 answers

What is cross browser testing?

Cross browser compatibility is the ability of ...READ MORE

Mar 25, 2019 in Selenium by Frankie
• 9,830 points
641 views
0 votes
0 answers

Date is not selected from a second calendar using selenium webdriver

Day from "From Date is selected" where ...READ MORE

Mar 20, 2019 in Selenium by anonymous
910 views
0 votes
1 answer

How to start Chromedriver in verbose mode on Eclipse

Hi friend, here is a script that ...READ MORE

Mar 20, 2019 in Selenium by Vaishnavi
• 1,180 points
1,056 views
0 votes
1 answer

Double click in Selenium using Python

Hey there! As far as I know, ...READ MORE

Mar 20, 2019 in Selenium by Surya
• 970 points
7,618 views
0 votes
1 answer

How to write a code for combo box and how can i select a country from country dropdown?

https://stackoverflow.com/questions/40017443/how-to-perform-dropdow ...READ MORE

May 8, 2020 in Selenium by vaibhav
1,334 views
+1 vote
1 answer

How can Selenium select each div separately that have the same class

Hi Surya, you have already got the ...READ MORE

Mar 14, 2019 in Selenium by Vaishnavi
• 1,180 points
24,393 views
0 votes
1 answer

How to have a Headless browser for Armv7 Linux processor?

You can install the lower version of ...READ MORE

Mar 14, 2019 in Selenium by Vaishnavi
• 1,180 points
1,721 views
0 votes
0 answers

How to get the text from the HTML5 input error message in Selenium?

On giving invalid data in the email ...READ MORE

Mar 12, 2019 in Selenium by Vaishnavi
• 1,180 points
1,757 views
0 votes
0 answers

What is the use of Protractor outside AngularJS

I have recently switched from AngularJS to ...READ MORE

Mar 11, 2019 in Selenium by Surya
• 970 points
421 views
0 votes
0 answers

Could you please help me with some selenium projects along with source code?

I am learning selenium and  I have ...READ MORE

Mar 10, 2019 in Selenium by Mark
600 views
0 votes
1 answer

How to automate the Instagram search bar with selenium

Hi, please don't search by any placeholder ...READ MORE

Mar 9, 2019 in Selenium by Surya
• 970 points
5,672 views
0 votes
2 answers

How to save as PDF on Chrome using Selenium

Vaishanvi, Select  ID  selected dropdown or it ...READ MORE

Feb 22, 2020 in Selenium by Abdul
33,319 views
0 votes
1 answer

How to pass parameters to a Junit test case from the Ant build tool?

The JUnit task accepts nested system property elements. <junit fork="no"> <sysproperty ...READ MORE

Mar 7, 2019 in Selenium by Vaishnavi
• 1,180 points
1,567 views