Latest questions in Selenium

0 votes
1 answer

Running a Firebug within Selenium WebDriver (Selenium 2)

Create your profile in code and dynaically ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
555 views
0 votes
1 answer

How to open a browser windows silently in the background?

It is a little bit of a ...READ MORE

Apr 20, 2018 in Selenium by king_kenny
• 3,710 points
5,261 views
0 votes
1 answer

Install Selenium in a conda environment

Conda uses different channels to search for ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
4,556 views
0 votes
1 answer

Searching for the element with   symbol in selenium

Use Below: //div[@class='Tips' and text()='\u00a0'] READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
8,739 views
0 votes
1 answer

Selenium Tutorial

There are lots of channels for selenium ...READ MORE

Apr 20, 2018 in Selenium by king_kenny
• 3,710 points
387 views
0 votes
1 answer

What is difference the between Selenium and Celerity?

If you are talking about speed, use Celerity. If ...READ MORE

Apr 20, 2018 in Selenium by king_kenny
• 3,710 points
823 views
0 votes
1 answer

How to upload a resume to a website using selenium in python?

Use this code, this will help you: from ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
2,596 views
0 votes
1 answer

Browser supported by Selenium 2.0

Below Will help you: Opera: The OperaDriver supports Opera ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
595 views
0 votes
1 answer

Differences between Selenium IDE, Selenium RC and WebDriver

Selenium Ide is a Firefox plugin that ...READ MORE

Apr 19, 2018 in Selenium by Vardy
• 2,360 points
854 views
0 votes
2 answers

webdriver.ie.driver System Property setting driver executable

System.setProperty("webdriver.chrome.driver","C:\\Users\\vthaduri\\workspace\\LDCSuite\\IEDriverServer.exe"); your miss take is webdriver.chrome.driver but, we have ...READ MORE

Apr 24, 2019 in Selenium by anonymous
8,400 views
0 votes
3 answers

java.lang.IllegalStateException Error after adding set property webdriver

/* System.setProperty("WebDriver.gecko.driver", "C:\\Users\\DELL\\Desktop\\GeckoDriver1\\geckodriver.exe"); WebDriver driver = new FirefoxDriver(); */ ...READ MORE

May 1, 2019 in Selenium by anonymous
19,440 views
0 votes
1 answer

30 min Wait on a page and then perform any Operation using Selenium Webdriver

Implicit wait tells webdriver to poll the ...READ MORE

Apr 19, 2018 in Selenium by Shubham
• 13,490 points
2,635 views
0 votes
2 answers

Getting Error in System.setProperty of ChromeDriver

System.setProperty("webdriver.chrome.driver", ...READ MORE

Jan 8, 2019 in Selenium by anonymous
9,169 views
0 votes
1 answer

Not able to set ChromeDriver to run a TestNG programm

You have not set the system properties ...READ MORE

Apr 19, 2018 in Selenium by Meci Matt
• 9,460 points
2,248 views
0 votes
2 answers

What is the role of TestNG & JUnit frameworks in Selenium?

TestNG and JUnit are test frameworks . it ...READ MORE

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

what do you mean by browser's native support w.r.t to Selenium WebDriver?

From Selenium v3 onwards, every browser vendor ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
3,724 views
0 votes
1 answer

Selenium for testing browser plugins

Yup..Installing browser plugins is possible with Selenium. ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
2,162 views
0 votes
1 answer

Newbie here. Can someone please summarize the difference between selenium1 and selenium2?

Selenium 1 included Selenium RC, Selenium IDE ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
560 views
0 votes
1 answer

Using Selenium, is it possible to verify if text is present inside a PDF which is loaded by the browser?

Reading PDF contents is not a functionality ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
16,888 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

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

How to use Enter/Return Key in Selenium

You can use the below code: import org.openqa.selenium.Keys WebEle ...READ MORE

Apr 18, 2018 in Selenium by Meci Matt
• 9,460 points
2,644 views
0 votes
1 answer

findElement(By.xpath()) not working using Selenium WebDriver

element = findElement(By.xpath("//*[@test-id='test-username']"); element = findElement(By.xpath("//input[@test-id='test-username']"); (*) - any ...READ MORE

Apr 18, 2018 in Selenium by code_ninja
• 6,290 points
8,803 views
0 votes
1 answer

Using XPath preceding-sibling correctly

Since all buttons are on the same ...READ MORE

Apr 18, 2018 in Selenium by Vardy
• 2,360 points
13,302 views
0 votes
1 answer

Need to integrate my Selenium tests with REST APIs

Selenium is good enough for this purpose...You ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
2,370 views
+2 votes
3 answers

How can we handle authentication popup in Selenium WebDriver using Java

1) By passing user credentials in URL. String ...READ MORE

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

What purpose does this "::" solve in selenium?

Well this is not a Selenium functionality, ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
347 views
0 votes
1 answer

Do we have an IE-based Selenium IDE for tests?

Well Selenium has an IDE only for ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
433 views
0 votes
2 answers

Selenium: Diff between POM (page object model) and page factory?

Hi, In POM (Page Object Model) you create ...READ MORE

Mar 14, 2019 in Selenium by Ellen Dares
6,178 views
0 votes
1 answer

Page Object Pattern in Selenium WebDriver

Check below links: Documentation: Page Objects and PageFactory  Page Object Design Pattern  Other ...READ MORE

Apr 17, 2018 in Selenium by Vardy
• 2,360 points
814 views
0 votes
1 answer

Handling calendar popup using Selenium WebDriver

You are selecting wrongly your elements in ...READ MORE

Apr 17, 2018 in Selenium by Shubham
• 13,490 points
4,189 views
+3 votes
6 answers

Verifying whether an element present or visible in selenium Webdriver

Below code will help you: To check Element ...READ MORE

Apr 17, 2018 in Selenium by king_kenny
• 3,710 points
95,279 views
0 votes
1 answer

Difference between “selenium server” and “selenium server standalone” jars

If you use WebDriver API, then you ...READ MORE

Apr 17, 2018 in Selenium by becky
2,049 views
0 votes
1 answer

Downloading *.jar file from http:// seleniumhq.org using Selenium WebDriver

For Selenium Standalone Server: profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/java-archive"); If downloading ...READ MORE

Apr 17, 2018 in Selenium by Shubham
• 13,490 points
5,973 views
0 votes
1 answer

Which Firefox version is compatible with Selenium 3.6.0

You would need to use GeckoDriver if ...READ MORE

Apr 17, 2018 in Selenium by king_kenny
• 3,710 points
1,300 views
0 votes
1 answer

Installing Selenium WebDriver on Mac OS

For Installing if you use homebrew , you can ...READ MORE

Apr 17, 2018 in Selenium by Vardy
• 2,360 points
6,007 views
0 votes
1 answer

'The connection has timed out Error using Selenium Webdriver

Try to use implicit waits to ensure ...READ MORE

Apr 17, 2018 in Selenium by niki
7,257 views
0 votes
1 answer

Binding Selenium Javadoc with eclipse

First, you need to go to:- project properties ...READ MORE

Apr 17, 2018 in Selenium by Meci Matt
• 9,460 points
1,771 views
0 votes
1 answer

InvalidSelectorException while using CSS Locator- contains() in Selenium WebDriver

The main problem with your code is ...READ MORE

Apr 17, 2018 in Selenium by Meci Matt
• 9,460 points
11,167 views
0 votes
1 answer

How to find element using classname and tagname using selenium webdriver?

Use the below code or you can ...READ MORE

Apr 17, 2018 in Selenium by king_kenny
• 3,710 points
12,088 views
0 votes
1 answer

How to Create Object Repository in Selenium Web Driver?

Try POM Model (Page object model). Refer ...READ MORE

Apr 17, 2018 in Selenium by adam
1,702 views
0 votes
1 answer

XPath for the elements with no ID or Name in Selenium Webdriver

Use like this or similar to this: //div[@id="top-level-menu-item-3"]/div[@class="filter-label"] //div[@id="top-level-menu1"] ...READ MORE

Apr 17, 2018 in Selenium by Meci Matt
• 9,460 points
6,901 views
0 votes
1 answer

Which is better CSS or Xpath? Considering performance and cross browser testing

According to css has better performance compared ...READ MORE

Apr 17, 2018 in Selenium by Shubham
• 13,490 points
2,128 views
+2 votes
3 answers

Selenium Webdriver + Java - Eclipse: java.lang.NoClassDefFoundError

I also faced this issue first time, ...READ MORE

Aug 28, 2019 in Selenium by Shraddha
68,411 views
0 votes
1 answer

Impilicit wait vs Explicit wait vs Fluent wait

Implicit wait: Your telling the WebDriver the ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
4,046 views
0 votes
1 answer

How to select an Object by its class in Selenium?

When it comes to Selenium, XPath will ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
769 views
0 votes
1 answer

Using XPath with Selenium-Java code

There is a minor syntax error in ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
803 views
0 votes
1 answer

Diff between WebDriver listeners and TestNG listeners?

This is not a very important concept ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
6,137 views
0 votes
1 answer

Upgrading or Updating existing version of Selenium Java Project

I downloaded the java client driver from ...READ MORE

Apr 13, 2018 in Selenium by commander
1,960 views
0 votes
5 answers

How to use JavaScript in selenium to click an Element?

WebElement element = driver.findElement(By.id("id")); JavascriptExe ...READ MORE

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

What is the difference between thoughtworks.selenium and openqa.selenium selenium?

thoughtworks.selenium is the original Selenium (aka Selenium 1, ...READ MORE

Apr 13, 2018 in Selenium by king_kenny
• 3,710 points
2,698 views