Most voted questions in Selenium

+1 vote
1 answer

java error in eclipse

Hey Siddharth, try changing the module version, ...READ MORE

Jul 16, 2019 in Selenium by Abha
• 28,140 points
4,897 views
+1 vote
1 answer

What is Appium and how it uses Selenium Webdriver?

Hey Drejina, Appium is an open source ...READ MORE

Jul 7, 2019 in Selenium by Martin
2,814 views
+1 vote
1 answer

How to perform right click on an element and open it a new window using Web Driver?

Hey Karthik, you can perform right click ...READ MORE

Jul 7, 2019 in Selenium by Hansraj
7,426 views
+1 vote
1 answer

How can we get the font size, font color, font type used for a particular text on a web page using Selenium web driver?

Hi Deepti, you can use getcssvalue() method to ...READ MORE

Jul 3, 2019 in Selenium by Abha
• 28,140 points
15,897 views
+1 vote
1 answer

How can I get All Text in robot framework ?

${elem} = Get WebElements ...READ MORE

Jan 29, 2020 in Selenium by Abhishek
• 160 points
11,892 views
+1 vote
1 answer

What are the different attributes for @Test annotation in testNG?

Hey @Iqbal, some of the most common ...READ MORE

Jun 25, 2019 in Selenium by Gulshan
11,313 views
+1 vote
4 answers

How to get typed text from a textbox by using Selenium Webdriver?

Hey Ashmita, to get the typed text ...READ MORE

Jun 25, 2019 in Selenium by Abha
• 28,140 points
38,143 views
+1 vote
2 answers

How to click button selenium python?

Have you tried using implicit_wait method before getting ...READ MORE

May 27, 2019 in Selenium by Abha
• 28,140 points
10,172 views
+1 vote
1 answer

How to access emails in gmail and opening the latest one from unread mails using Selenium Webdriver?

Hey Pratyush, to access emails from your ...READ MORE

May 21, 2019 in Selenium by Abha
• 28,140 points
12,621 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,063 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,025 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,474 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,020 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,745 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
489 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,311 views
+1 vote
0 answers
+1 vote
0 answers

why the dot operator used in selenium

Mar 1, 2019 in Selenium by anonymous
651 views
+1 vote
1 answer

What is regression testing?

Regression testing is when you select partial ...READ MORE

Feb 18, 2019 in Selenium by Jobin
657 views
+1 vote
1 answer

How to get the HTML source of a webpage using Selenium in Java?

There is a method called getPageSource() in ...READ MORE

Jan 11, 2019 in Selenium by Sneha
28,324 views
+1 vote
3 answers

What is the command used to register gecko driver?

System.setProperty("webdriver.gecko.driver", "C:\\gecko ...READ MORE

Jan 10, 2019 in Selenium by Frankie
• 9,830 points
17,525 views
+1 vote
1 answer

How to search for a string without clicking on search button

There is a way by which you ...READ MORE

Jan 5, 2019 in Selenium by Disha
1,991 views
+1 vote
1 answer

Python Selenium - Trying to find element by text on page

Hello @User, Here is an example for ...READ MORE

Dec 31, 2018 in Selenium by Priyaj
• 58,090 points
14,308 views
+1 vote
1 answer

Getting error while inspecting the search box in google.

By looking at your error it seems ...READ MORE

Dec 21, 2018 in Selenium by Nabarupa
1,631 views
+1 vote
1 answer

How to use xpath to get a specific text from a website?

The task is to get the text ...READ MORE

Dec 19, 2018 in Selenium by Nabarupa
7,069 views
+1 vote
1 answer

How can I automate the process of login to Edureka's community website?

It is similar to automating the process ...READ MORE

Dec 19, 2018 in Selenium by Tarun
1,699 views
+1 vote
1 answer

How to click the gender radio button in facebook using Selenium?

I used xpath for loacting the male ...READ MORE

Dec 19, 2018 in Selenium by Nabarupa
5,357 views
+1 vote
1 answer

How to click on Login button on facebook?

As you said, you can use the ...READ MORE

Dec 18, 2018 in Selenium by Nabarupa
2,895 views
+1 vote
1 answer

What is locators used for in selenium?

Locator are used to find and match ...READ MORE

Dec 18, 2018 in Selenium by Nabarupa
568 views
+1 vote
1 answer

How to maximize chrome browser in Selenium Java?

You can use Chrome options for playing ...READ MORE

Dec 17, 2018 in Selenium by Nabarupa
4,764 views
+1 vote
1 answer

Can someone explain the meaning of WebDriver wd = new ChromeDriver();?

WebDriver webdriver = new ChromeDriver(); The following simply ...READ MORE

Dec 15, 2018 in Selenium by Aniket
727 views
+1 vote
1 answer

How to set chromedriver in selenium ?

System.setProperty("webdriver.chrome.driver","Your\\path\\to\\chromedriver.exe"); WebDriver wd = new ChromeDriver();//create an instance ...READ MORE

Dec 14, 2018 in Selenium by Aniket
854 views
+1 vote
1 answer

How to get all the links from google search?

You can use the following code to ...READ MORE

Dec 14, 2018 in Selenium by Shuvodip
1,095 views
+1 vote
2 answers

How to get the title of a webpage using Selenium Java?

Essentially, driver.getTitle(); function can be used to ...READ MORE

Dec 17, 2018 in Selenium by Vardhan
• 13,190 points
15,272 views
+1 vote
1 answer

Getting error while giving a string input to google search in selenium java.

The two possible solution to the problem ...READ MORE

Dec 14, 2018 in Selenium by Nabarupa
1,608 views
+1 vote
1 answer

What are the similarity between Selenium RC and Selenium Webdriver?

Selenium RC and Webdriver both support the ...READ MORE

Dec 12, 2018 in Selenium by Priyaj
• 58,090 points
909 views
+1 vote
2 answers

selenium-python Process unexpectedly closed with status 1

Hi paragf! I checked your code.  Firstly, there ...READ MORE

Sep 28, 2018 in Selenium by Omkar
• 69,210 points
4,755 views
+1 vote
1 answer

Angular JS: Selenium cannot click a button by python code on mac

You can try clicking it with javascript ...READ MORE

Aug 9, 2018 in Selenium by Samarpit
• 5,910 points
4,790 views
+1 vote
1 answer

Auto suggest text box in selenium webdriver

You must enter a value to suggest ...READ MORE

Jul 27, 2018 in Selenium by Samarpit
• 5,910 points
8,126 views
+1 vote
1 answer

How to click a link whose href has a substring using Selenium webdriver?

It can be done by using the ...READ MORE

Jul 11, 2018 in Selenium by Meci Matt
• 9,460 points
13,174 views
+1 vote
1 answer

How to download a file at a specified location through python and selenium using Chrome driver

Create a profile for chrome and define ...READ MORE

Jul 11, 2018 in Selenium by Samarpit
• 5,910 points
35,030 views
+1 vote
2 answers

Error: stale element reference: element is not attached to the page document

go to your code and apply implicit ...READ MORE

Dec 21, 2018 in Selenium by Malik
57,526 views
+1 vote
2 answers

Drop-down menu option value not working using Selenium (Python)

from selenium.webdriver.support.select import Select inputElementG ...READ MORE

Nov 28, 2018 in Selenium by Rijhu mal
14,422 views
+1 vote
2 answers

Selenium IDE Click button error while clicking on Play Recording

Hello, There are a number of reasons that ...READ MORE

Nov 30, 2019 in Selenium by surbhi
• 260 points
1 flag 1,901 views
+1 vote
1 answer

Throwing Hamcrest exception message while actual and expected are same

Below will help you: Its due to string ...READ MORE

Jun 14, 2018 in Selenium by Samarpit
• 5,910 points
543 views
+1 vote
1 answer

Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms.

This issue generally happens due to incompatibility ...READ MORE

Jun 1, 2018 in Selenium by bits1
• 120 points
10,476 views
+1 vote
1 answer

Selenium Eror: org.openqa.selenium.UnhandledAlertException: unexpected alert open

Even I had a similar problem. This ...READ MORE

May 29, 2018 in Selenium by sniffy_god
• 780 points
14,588 views
+1 vote
2 answers

Is it possible to scroll down in a webpage using selenium webdriver programmed on python?

I using next code for facebook for ...READ MORE

May 16, 2019 in Selenium by mslavikas@gmail.com
25,553 views
+1 vote
1 answer

How to handle notifications in Python with Selenium (Chrome WebDriver)

Below will help you: You can disable the ...READ MORE

May 11, 2018 in Selenium by Samarpit
• 5,910 points
13,696 views