Trending questions in Selenium

0 votes
1 answer

How can we use Selenium with Python?

First  Install Python based on the Operating ...READ MORE

May 8, 2018 in Selenium by Meci Matt
• 9,460 points
665 views
0 votes
1 answer

Selenium grid 2 in chrome browser

The problem is in -Dwebdriver arguments. Maybe you should do ...READ MORE

Apr 27, 2018 in Selenium by Samarpit
• 5,910 points
1,084 views
0 votes
1 answer

Maximizing the browser window in Selenium WebDriver using C#

Check this first: http://code.google.com/p/selenium/issues/detail?id=174 You Can use the JavascriptExector as follows: public ...READ MORE

May 2, 2018 in Selenium by Samarpit
• 5,910 points
858 views
0 votes
1 answer

Handle Popup in selenium

you can try using this loop: for (String ...READ MORE

May 3, 2018 in Selenium by wrecker
• 3,110 points
804 views
0 votes
1 answer

Best reporting tool with selenium webdriver

here are the best reporting tools: ReportNG Maven SureFire ...READ MORE

Apr 27, 2018 in Selenium by anonymous
1,045 views
0 votes
1 answer

Page Factory: StaleElementReference Exception

Usually, a StaleElementReferenceException is thrown when: 1. ...READ MORE

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

Checking if the Checkbox is already checked

you can verify using IsSelelected Method. IsCheck = ...READ MORE

May 7, 2018 in Selenium by anonymous
513 views
0 votes
1 answer

Locating an element by value using css selector using Selenium WebDriver

Below code will help By.cssSelector("td[class='someclass'][value=' ...READ MORE

Apr 9, 2018 in Selenium by coldcode
• 2,080 points
1,723 views
0 votes
1 answer

Contains expression in Selenium using Java Language

Do something like this: WebElement thingie = driver.findElement(By.xpath("//tr[contains(@id,'" ...READ MORE

May 4, 2018 in Selenium by Samarpit
• 5,910 points
638 views
0 votes
1 answer

Can Selenium testing be done on gui less server? I heard of something called headless browser testing, but not sure.

Yes, you are indeed rigth. For Selenium ...READ MORE

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

How can I setup Selenium Grid in Selenium 3.0

Below is the stepwise solution for setting ...READ MORE

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

How can I possibly implement the drag n drop functionality with WebDriver testing

For working with pages where you have ...READ MORE

May 2, 2018 in Selenium by sniffy_god
• 780 points
655 views
0 votes
1 answer

Handling Alerts Selenium Webdriver

You can use Explicit Wait from here https://www.seleniumhq.org/docs/04_webdriver_advanced.jsp#explicit-and-implicit-waits public ...READ MORE

Apr 9, 2018 in Selenium by Damon Salvatore
• 5,980 points
1,658 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

Error: FF Browser not working for Selenium test after update

Since Firefox's latest update to version 47.0, ...READ MORE

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

Can't find an element Using Selenium

The reason you can't locate the item ...READ MORE

Mar 27, 2018 in Selenium by nsv999
• 5,500 points
2,223 views
0 votes
1 answer

How to choose from a drop-down in Selenium 2?

You can probably use the 'Select' class ...READ MORE

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

How to use Selenium IDE ?

There are a couple of good videos ...READ MORE

May 3, 2018 in Selenium by wrecker
• 3,110 points
550 views
0 votes
1 answer

How to take screenshot in Selenium WebDriver

In Java, it can be done like ...READ MORE

Apr 7, 2018 in Selenium by nsv999
• 5,500 points
1,665 views
0 votes
1 answer

JARS for using Selenium class functions in code

Yup. I'm not sure, exactly which JARS ...READ MORE

Apr 12, 2018 in Selenium by nsv999
• 5,500 points
1,433 views
0 votes
1 answer

Unable to connect to chromedriver 127.0.0.1:9515 on Amazon Linux AMI server

The issue seems to be only with ...READ MORE

Mar 26, 2018 in Selenium by nsv999
• 5,500 points
2,148 views
0 votes
1 answer

Timeout error in selenium:- Timeout::Error with Selenium/Capybara/Cucumber/Ruby

The only reason for a timeout error ...READ MORE

Mar 26, 2018 in Selenium by nsv999
• 5,500 points
2,071 views
0 votes
1 answer

Test in parallel with selenium grid 2

You have to register one more node ...READ MORE

Apr 27, 2018 in Selenium by anonymous
601 views
0 votes
1 answer

Running a selenium-server-standalone

Below codes will help you: java -jar seleniumjar.jar ...READ MORE

Apr 9, 2018 in Selenium by KillerMiller
1,385 views
0 votes
1 answer

Getting CSS class name using Selenium Webdriver

You can use getAttribute(attributeLocator) function.  selenium.getAttribute(//xpath@class); You have to specify the ...READ MORE

Apr 9, 2018 in Selenium by ghost
• 1,790 points
1,365 views
0 votes
1 answer

Building an Application using Selenium Webdriver

Check the below info: Selenium - apache 2 ...READ MORE

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

Selenium docs error using Firefox

Selenium v2.25 doesn't support firefox v40. Either ...READ MORE

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

Executing Test Case in Java

Below is a code for Facebook login ...READ MORE

Apr 27, 2018 in Selenium by Meci Matt
• 9,460 points
555 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
821 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
851 views
0 votes
1 answer

Differences between Selenium Remote Control and Selenium Server

Check the documentation outlining the different parts of ...READ MORE

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

Headless ChromeDriver using Python Selenium error: Fails To Start— “DevTools request failed”

This should be because your ChromeDriver is ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
1,655 views
0 votes
1 answer

Need some advise on the preferred element locators with Selenium WebDriver

Well let's not call it "Hierarchy". But, ...READ MORE

Apr 13, 2018 in Selenium by king_kenny
• 3,710 points
1,008 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
810 views
0 votes
1 answer

First 10 search results displayed from www.seleniumhq.org

Try this: int count= selenium.getXpathCount("xpath=//a[@onmousedown and @href ...READ MORE

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

What new features come with Selenium 3?

You can read the differences fullly here: ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
1,269 views
0 votes
1 answer

Example for Selenium WebDriver

Here is a small program to login ...READ MORE

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

JavaScript Executor using Selenium WebDriver

Its working fine but the problem in ...READ MORE

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

How to find a list of elements that end with a particular string by using Selenium with Ruby

The problem is that, the end_with method ...READ MORE

Mar 27, 2018 in Selenium by nsv999
• 5,500 points
1,672 views
0 votes
1 answer

Maven pom.xml file issue USING SELEINUM WebDriver using Firfox

You don't need to change anything in ...READ MORE

Apr 3, 2018 in Selenium by ned_crew
• 1,610 points
1,361 views
0 votes
1 answer

Unable to use Selenium IDE & Firebug on Firefox

Unfortunately, Selenium IDE will not work anymore ...READ MORE

Apr 10, 2018 in Selenium by nsv999
• 5,500 points
1,085 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

DataDriven testing in selenium webdriver

Below is the step by step solution ...READ MORE

Apr 23, 2018 in Selenium by Meci Matt
• 9,460 points
419 views
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
553 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
801 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
559 views
0 votes
1 answer

Selenium 2.0 web driver Tutorials using .NET

Docs here have an example in C#: http://seleniumhq.org/docs/03_webdriver.html using ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
477 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
765 views
0 votes
1 answer

Opening Browser in Selenium

Here is the code to open the ...READ MORE

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

What's the diff between Selenium RC and Selenium WebDriver?

RC works by injecting the JavaScript functions ...READ MORE

Apr 5, 2018 in Selenium by nsv999
• 5,500 points
1,048 views