Selenium-Webdriver provides an API to control and communicate with web browsers.

learn more… | top users | synonyms

93
votes
15answers
52k views

Take a screenshot with Selenium WebDriver

Does anyone know if it's possible to take a screenshot using Selenium WebDriver? (Note: Not Selenium RC)
23
votes
16answers
21k views

How do I maximize the browser window in WebDriver (Selenium 2)?

Is there a way to maximize the browser window using WebDriver (Selenium 2) with C#?
15
votes
10answers
29k views

How do I set a an option as selected using selenium-webdriver (selenium 2.0) client in ruby

I am trying to get familiar with the new ruby selenium-webdriver as it appears more intuitive mostly than the previous version of selenium and the ruby driver that went with it. Also, i had trouble ...
14
votes
8answers
26k views

Selenium WebDriver and DropDown Boxes

If I want to select an option of a dropdown box, there are several ways to do that. I always used: driver.findElement(By.id("selection")).sendKeys("Germany"); But that didn't work every time. ...
13
votes
3answers
2k views

Tracking with Java Script if Ajax request is going on in a webpage or Intercept XMLHttpRequest through Selenium Web driver

I am using Selenium WebDriver for crawling a web site(only for example, I will be crawling other web sites too!) which has infinite scroll. Problem statement: Scroll down the infinite scroll page ...
11
votes
6answers
12k views

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

I have box where I run tests. It seems like Jenkins would ssh in and execute commands described in the specific job that's running. Here I am trying to run my Selenium Webdriver tests, but it tells ...
10
votes
4answers
2k views

Unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055)

While testing scenario by cucumber i'm getting the following error when running rspec tests unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055) ...
10
votes
1answer
766 views

Is there a way to test responsive CSS with Selenium?

The developers at my company have implemented our website to be CSS responsive, and I am confused how to leverage Selenium to test their work. I have been using Selenium WebDriver (Selenium 2) with ...
8
votes
2answers
258 views

wait until page refreshed

Here is a description of what I am trying to do using Selenium Webdriver in Python: I have my website which takes as input various parameters for a specific product and outputs a price for the product ...
7
votes
3answers
564 views

Pytest: how to skip the rest of tests in the class if one has failed?

I'm creating the test cases for web-tests using Jenkins, Python, Selenium2(webdriver) and Py.test frameworks. So far I'm organizing my tests in the following structure: each Class is the Test ...
7
votes
7answers
3k views

How to perform drag and drop using selenium-webdriver when target and destination element are in different frames?

I have to drag an image and drop it into a CQ5 component. The image and component are in different frames. Here is the code which did not work as webelement destinationcould not be found when the ...
7
votes
3answers
2k views

Failed to connect to binary FirefoxBinary with Selenium in Maven

I am running some Selenium-Tests. When I start them directly from Eclipse everything works fine. But when I Start them through Maven there the following Exception occurs: ...
6
votes
2answers
1k views

selenium xpath scrape of mixed content html span

I'm trying to scrape a span element that has mixed content <span id="span-id"> <!--starts with some whitespace--> <b>bold title</b> <br/> text here that I want ...
6
votes
3answers
121 views

How to execute code only on test failures with python unittest2?

I have some class-based unit tests running in python's unittest2 framework. We're using Selenium WebDriver, which has a convenient save_screenshot() method. I'd like to grab a screenshot in tearDown() ...
6
votes
3answers
325 views

Custom profile for Chrome

Environment: Mac OS X 10.8.3, Ruby 2.0.0p0, selenium-webdriver 2.32.1, ChromeDriver 26.0.1383.0. I want to change default browser language. I am testing if the site detects the browser language ...
6
votes
2answers
666 views

Selenium Grid, how to utilize WebDriver with ThreadSafeSeleniumSessionStorage.session()

I am working on a project that involves using the Selenium WebDriver and a specific Firefox Profile heavily to find elements and manage the page. For example, ...
6
votes
2answers
310 views

Cannot initialize AndroidDriver

At W2k8 64 bit I have in the android emulator instance of android 4.1 API Level 16 with ARM as CPU. After launch of it I'm running my UnitTest and on the first line var webDriver = new ...
6
votes
1answer
238 views

Running Selenium test on nUnit not executing scripts

When I was running my tests on C#-visualnUnit it runs successfully but when I was running it on Nunit only and just having the dll on the project it out puts like this: Started ChromeDriver ...
5
votes
7answers
1k views

Is there a Selenium 2 version of Selenium IDE?

I'm new to Selenium and I'm a bit confused about the version numbers. Selenium 2.0 was released in 2011. I just downloaded the Selenium IDE Firefox extension and it is version 1.7.2. Is there also ...
5
votes
2answers
3k views

Selenium WebDriver (2.25) Timeout Not Working

I think I've read all the Selenium timeout questions on Stack Overflow, yet neither implicit nor explicit timeout works in my Selenium webdriver 2.25 (Python 2.7 binding) and both "no_timeout_here =" ...
5
votes
1answer
512 views

How to change web browser from Firefox to Chrome/Opera/IE/Safari in selenium webdriver?

How to change browser from firefox to Chrome/Opera/IE working in selenium webdriver? Please guide in steps and also with the code snippet. Please reply if you have answer for any of the browsers ...
5
votes
1answer
315 views

Use Selenium Webdriver to get periodically updated content

As an example, the chat site Omegle always displays on its homepage the current number of users online, which I am able to extract with this python script using the headless HTMLUnit Webdriver in ...
5
votes
3answers
3k views

Selenium webdriver does not connect with firefox 20

I'm using selenium-server-standalone-2.28.0.jar . Launched the hub and Launched the listener using the following command "C:\Program Files (x86)\Java\jre7\bin\Java.exe" -jar ...
5
votes
2answers
37 views

How to set Google Chrome in WebDriver

I am trying to set chrome as my browser for testing in webdriver and set the chromedriver.exe file properly but still i am getting below error: org.openqa.selenium.WebDriverException: The path to the ...
5
votes
3answers
245 views

Selenium testing machine

after three days googling and testing I gave up, and I need help. My objective is allow my co-workers to record one or more tests with Selenium IDE. Export them, upload them into a server, and get ...
5
votes
1answer
839 views

WebDriver and IE10 very slow input

When I'm trying to execute tests in the latest IE, I see that input is very slow : it takes like 5 seconds for every character to appear in the input field. All security zones are enabled and the ...
5
votes
1answer
617 views

In python, selenium module . how to use firefox driver

I want to use firefox driver. But, I got Error I don't know what is problem. I guess that fireforx didn't install. ------ my source ------ from selenium import webdriver driver = ...
5
votes
1answer
355 views

Selenium WebDriverJs commands

I am running a combination of Node.js + Mocha + Selenium Webdriverjs for the first time. I setup everything according to their documentation here https://code.google.com/p/selenium/wiki/WebDriverJs, ...
5
votes
2answers
332 views

Getting a 404 on /wd/hub/session when I try to connect to selenium grid remotely via Python

I can see two remotes under the console but when I try to connect remotely and execute something it fails with a 404. from selenium import webdriver browser = webdriver.Remote( ...
5
votes
3answers
806 views

A way around Element cannot be scrolled into view - Watir-webdriver with Ruby

So, we have the following code in our page: <div class="toggle-wrapper"> <input id="HasRegistration_true" class="registration_required toggle" type="radio" value="True" ...
4
votes
2answers
3k views

Unable to locate iframe in Selenium Webdriver(java)

I want to select a element of iframe which is located with in a popup window. I am able go inside popup window but not able to locate iframe. Below is html code of popup window. <html> ...
4
votes
4answers
1k views

Selenium Grid on Multiple Browsers: should each test case have separate class for each browser?

I'm trying to put together my first Data Driven Test Framework that runs tests through Selenium Grid/WebDriver on multiple browsers. Right now, I have each test case in it's own class, and I ...
4
votes
2answers
4k views

Selenium Webdriver move mouse to Point

I am currently trying to move the cursor to a point (org.openqa.selenium.Point) that has been set by checking for an occurrence of a marker on a live chart from which I can get no details but can find ...
4
votes
4answers
649 views

Why doesn’t input.send_keys() work in my Selenium WebDriver Python script when run as www-data?

I have a Python script that uses Selenium WebDriver (with PyVirtualDisplay as the display) to log into Flickr. http://pastebin.com/dqmf4Ecw (you’ll need to add your own Flickr credentials) When I ...
4
votes
1answer
3k views

what profile does selenium webdriver use by default?

Where does selenium webdriver 2 get the anonymous profile that it uses when it opens firefox driver? If it used the default for firefox, %appdata%/roaming/mozilla/firefox/profiles, then if i were to ...
4
votes
1answer
321 views

Selenium and HTML Window location

I am using Selenium's WebDriver in conjunction with java.awt.Robot to better simulate user interaction with our web application. Yes, I know it's probably unnecessary, but the customers I serve ...
4
votes
2answers
551 views

How to upload a file in Selenium with no text box

I have been looking for a solution to uploading a file in Selenium 2. The problem is that the web element that I'm trying to upload is usable in two ways: Drag and drop, or click on a button. There ...
4
votes
2answers
170 views

How can I skip the login in cucumber scenarios to make test fasters?

I have a rails-app and I'm trying making my cucumber/capybara/selenium-webdriver tests faster. Most of my scenarios look like: @javascript Feature: Writing reports In order ..... Background: ...
4
votes
1answer
470 views

How to properly configure the Selenium Maven Plugin to work with Xvfb to run headless

Background: I'm using selenium-server-2.25.0 in conjunction with J-Unit 4 to run through a handful of UI testing scenarios for my GWT app. In my IDE (Netbeans 7.2), I can right-click on my project, ...
4
votes
2answers
218 views

iWebDriver - iphone Selenium

I have gotten this to work before so I know its possible, but trying it on a new machine. I have OS X 10.8.2, Xcode 4.6, iPad 6.1, and trying to do this: Iphonedriver selenium I get to the point ...
4
votes
2answers
181 views

Watir/Selenium2 Nothing happens after clicking on an element inside iframe in Internet Explorer 9

I'm writing autotests with Watir-WebDriver and Ruby 1.9.2 on Ubuntu for the web. I have some iframe with several elements. I need to click on the items and check what happens. The <iframe> looks ...
4
votes
5answers
2k views

C# Selenium WebDriver - FirefoxDriver error: Failed to start up socket within 45000

I am getting the below exception when I try to run the selenium c# webdriver scripts using Firefox browser. OpenQA.Selenium.WebDriverException was unhandled by user code HResult=-2146233088 ...
4
votes
0answers
103 views

Error on command: service: “ecmascript” [closed]

I have sucessfully run locator commands in Firefox, Chrome and IE but I have an issue with Opera 12.02. This code is the source of the issue: ...
3
votes
7answers
11k views

Selenium WebDriver : how to select item from dropdown list using Selenium WebDriver with java?

How can I select an item from a drop down list like this gender(i.e male,female from dropdown) using selenium webdriver with Java? I have tried this WebElement select = ...
3
votes
5answers
14k views

How to get text from each cell of an HTML table?

In Selenium 2.0, I have no idea how to traverse through a HTML table in a webpage. In selenium2.0 javadoc, I found two classes "TableFinder" and "TableCellFinder", but I couldn't find any examples. ...
3
votes
1answer
370 views

Chromedriver is extremely slow on a specific machine using Selenium Grid and .net

Overview: Chromedriver works normally on one machine but extremely slowly on two other identical machines. Setup: Selenium Webdriver using .Net for coding and Selenium Grid for distributing the ...
3
votes
2answers
272 views

Navigation utility without browser, light weight and fail-proof

I have a use case where I need to fill the form in a website but don't have access to API. Currently we are using webdriver along with browser but it gets very heavy and not fool proof as the process ...
3
votes
3answers
702 views

WebDriver + TestNG - How to handle test results

I'm quite new to WebDriver and TestNG framework. I've started with a project that does a regression test of an e-commerce website. I'm done with the login and registration and so on. But there is ...
3
votes
4answers
622 views

Which is the correct way to check if an element is present or displayed on a page with Selenium WebDriver using Java?

I'm testing a web application using Selenium WebDriver and I was wondering which is the proper method to check if the elements are present or displayed. I usually assert that all elements are present ...
3
votes
1answer
3k views

How to type some text in hidden field in WebDriver

I am using WebDriver with Java for test automation. I have the following HTML code for input field which is hidden: <input type="hidden" value="" name="body" id=":6b"> How to type something ...

1 2 3 4 5 28