WebDriver is a tool for writing automated tests of websites. It aims to mimic the behavior of a real user, and as such interacts with the HTML of the application. Rather than running as a JavaScript application within the browser (with the limitations this brings, such as the "same origin" problem), WebDriver controls the browser itself. This means that it can take advantage of any facilities offered by the native platform.

learn more… | top users | synonyms

17
votes
3answers
12k views

WebDriver (Selenium 2) API documentation

I can't locate an official class/method/properties type API reference for WebDriver anywhere, only the 5 minute guide and 'Next Step' pages located at seleniumhq, plus a few other haphazard ...
15
votes
3answers
3k views

Where is WebDriver's Python API Documentation?

Where can I find the "API docs" for the Python Bindings for Selenium's WebDriver? http://code.google.com/p/selenium/wiki/PythonBindings
13
votes
1answer
3k views

Cucumber and Capybara, clicking a non-link or button element

I am trying to test an inplace editor using Cucumber/Capybara/Selenium stack, but my problem is that the editor is activated by clicking a div and not a link or button. I can not seem to figure out ...
10
votes
3answers
4k views

what's the relationship between selenium rc and webdriver?

I can see that since selenium 2.0, webdriver and selenium rc are packaged together for download. Now I primarily use webdriver, but can I bring in selenium rc in my testing scripts from now and then? ...
10
votes
3answers
4k views

How to check if an element is visible with WebDriver

with WebDriver from Selenium 2.0a2 I am having trouble checking if an element is visible. WebDriver.findElement returns a WebElement, which unfortunately doesn't offer an isVisible method. I can go ...
9
votes
8answers
7k views

Selenium 2.0b3 IE WebDriver, Click not firing

When using the IE driver with IE9, occasionally the Click method will only select a button, it wont do the action of the Click(). Note this only happens occasionally, so i don't think it is the code ...
8
votes
1answer
3k views

Random “Element is no longer attached to the DOM” StaleElementReferenceException

I'm hoping it's just me, but Selenium Webdriver seems like a complete nightmare. The Chrome webdriver is currently unusable, and the other drivers are quite unreliable, or so it seems. I am battling ...
8
votes
6answers
6k views

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

Is there a way to maximize the browser window using WebDriver (Selenium 2)?
7
votes
4answers
2k views

selenium WebDriver StaleElementReferenceException

i get this error when running my tests: org.openqa.selenium.StaleElementReferenceException: Element is no longer attached to the DOM any idea on how to solve the above exception? this happen in my ...
7
votes
4answers
3k views

Best way to take screenshots of tests in Selenium 2?

So I need a way to take screenshots of my functional tests. Right now I'm using Selenium 2 with C# bindings. I pretty much want to take a screenshot at the end of the test to make sure the desired ...
6
votes
5answers
3k views

Selenium c# Webdriver: Wait Until Element is Present

I want to make sure that an element is present before the webdriver starts doing stuff. I'm trying to get something like this to work: WebDriverWait wait = new WebDriverWait(driver, new ...
6
votes
2answers
600 views

How do I get watir-webdriver to start Firefox 4 with Firebug?

Any ideas? I've tried setting webdriver.firefox.useExisting=true as described in the link below hoping to reuse an existing window with firebug enabled, but no such luck. ...
6
votes
3answers
758 views

How to handle tinyMCE when automating with watir-webdriver?

I'm evaluating Watir-webdriver, to decide if i can switch to using it for my browser tests (from Watir mostly) and one of the key things would be the ability to interact with TinyMCE WYSIWYG editors, ...
6
votes
4answers
4k views

How to check URL for 404 using Selenium WebDriver?

What is the most convenient way using Selenium WebDriver to check if an URL GET returns successfully (HTTP 200)? In this particular case I'm most interested in verifying that no images of the current ...
5
votes
3answers
320 views

How can I prompt for input using Selenium/Webdriver and use the result?

I would like to allow for user input and make some decisions based on it. If I do this: driver.execute_script("prompt('Enter smth','smth')") I get a nice prompt, but I cannot use it's value. Is ...
5
votes
2answers
601 views

webdriver firefox 7 maximize window

I've been using the following example to maximize my windows in my WebDriver tests, I upgraded to Firefox 7, and the script quit working. I don't get an error, the window just does not maximize, ...
5
votes
4answers
2k views

Selenium Web Driver: InternetExplorerDriver : NoSuchElementException

Currently, I am working on web driver to invoke IE browser to run the testing. But I received a NoSuchElementException when I tried to run the simple example below. However, the code just worked fine ...
5
votes
2answers
613 views

InternetExplorerDriver Error

I'm trying to instantiate an InternetExplorerDriver in C#, and every time I do I get the following error message: System.InvalidOperationException : Unexpected error launching Internet Explorer. ...
5
votes
2answers
576 views

WebDriver: get HTTP Response Code

I write Tests with Selenium2/WebDriver and want to test if HTTP Request returns an HTTP 403 Forbidden. Is it possible to get the http response status code with web driver?
5
votes
1answer
231 views

Restricting Selenium/Webdriver/HtmlUnit to a certain domain

While using selenium/webdriver for web scraping, I realized the target site has google analytics script running. Is there a way to restrict selenium/webdriver/htmlunit to avoid certain urls/domains ? ...
5
votes
1answer
5k views

Is there a proved mouseOver workaround for FirefoxDriver in Selenium2?

I'm using Selenium Java 2.0b3. I have this code: ... WebDriver driver = new InternetExplorerDriver(); Selenium seleniumDriver = new WebDriverBackedSelenium(driver, "http://localhost:8088/Sistema/"); ...
5
votes
4answers
2k views

How to deal with file uploading in test automation using selenium or webdriver

I think that everybody how uses Webdriver for test automation must be aware of its great advantages for web development. But there is a huge issue if file uploading is part of your webflow. It stops ...
5
votes
6answers
5k views

wait for page load in selenium

How do you make Selenium wait for the page to load in Selenium 2.0?
5
votes
2answers
807 views

Firefox 4 quits unexpectedly running Cucumber/Capybara/Webdriver

I just updated to the latest Firefox (4) and now our Cucumber, Capybara and Webdriver test suite is throwing errors when it tries to launch Firefox (anything marked with @javascript). Our test suite ...
5
votes
1answer
5k views

How to Using Webdriver Selenium for selecting an option in C#?

I was trying for my web test selecting an option. An example can be found here: http://www.tizag.com/phpT/examples/formex.php Everything works great except the selecting an option part. How to ...
5
votes
3answers
2k views

Webdriver: java.net.BindException: Address already in use: connect

While running webdriver, 3 minutes into running, I get the following exception and Webdriver crashes. I am using only one webdriver instance and one FirefoxDriver profile. Exception in thread "main" ...
5
votes
4answers
4k views

watir-webdriver wait for page load

using watir-webdriver [ http://github.com/jarib/watir-webdriver ] how do i wait for a page to load after i click a link? at the moment i am doing sleep n but this is not ideal as the page ...
4
votes
1answer
110 views

Any purely functional language bindings available for Selenium2/WebDriver?

While looking for any purely functional language bindings for Selenium2/WebDriver, I came across a repository for Haskell bindings for Selenium RC but not for the Selenium2/WebDriver. I am interested ...
4
votes
2answers
165 views

Python Selenium WebDriver drag-and-drop

I cannot get drag-and drop working with the Python WebDriver bindings. I am working with Google Chrome and Firefox on Mac OS X. There is a thread here where someone had a similar problem. I have ...
4
votes
2answers
224 views

Mac selenium webdriver chrome window always starts with a small window

I am having an issue using chrome and selenium 2 webdriver. The issue is that when I start my browser session using the chromedriver it always starts in a window that is less than half the size of ...
4
votes
3answers
261 views

Ruby - require 'watir-webdriver' - generates a LoadError no such file… Why?

I am new to Ruby and would really appreciate some help understanding what is going on here. Summary: Gem install watir-webdriver Installs fine start irb require "watir-webdriver" ... LoadError: no ...
4
votes
1answer
261 views
+50

Selenium Webdriver via C# - how to connect to an already open browser?

I would really appreciate a guide on how to connect to an already open browser using Selenium Webdriver via C#. This issue eats around 30% of my script development time! Thank you very much in ...
4
votes
3answers
527 views

How to stop Selenium from creating temporary Firefox Profiles using Web Driver?

I am using Selenium Web Driver API with Java. Every time I want to debug my test cases, a temporary profile for Firefox is created in the temporary files directory. This is a headache in two ways. ...
4
votes
2answers
940 views

Selenium2 WebDriver Ruby => how click on a hidden link

I use Selenium 2 WebDriver on Ruby. How it is possible click on hidden link, with css (display: none)? the link is submenu and is visible when mouse over on menu. //EDIT: ...
4
votes
1answer
447 views

Selenium 2 problem with WebDriver for Internet Explorer

we want to move our tests to selenium 2 and i have found an issue which i don't know how to resolve it. I am using the following commands for webdriver: WebDriver driver = new ...
4
votes
3answers
1k views

WebDriver: check if an element exists?

How to check if an element exist with web driver? Is using a try catch really the only possible way? boolean present; try { driver.findElement(By.id("logoutLink")); present = true; } catch ...
4
votes
2answers
565 views

XPath interpretation by Selenium/WebDriver driving IE

I'm trying to use Selenium RC and WebDriver (separately) to manipulate an HTML page. The source contains something like: <a href="/logoff"><span> <span>L</span> ogoff ...
4
votes
1answer
807 views

How reliable is HtmlUnitDriver?

Obviously, the answer to the question depends on a number of environmental factors. In general, I'm wondering what people's experiences are with HtmlUnitDriver as a reliable tool that can be ...
4
votes
2answers
227 views

Scala REPL tab-complete is lying to me?

With Scala 2.8.1, SBT 0.7.4, WebDriver HTMLUnit 2.6. In the SBT console REPL ... scala> e.findElement[tab] findElement findElementById findElementByLinkText ...
4
votes
2answers
851 views

How Does One Indicate the Firefox Profile With RemoteWebDriver

Looking at the Selenium 2.0 (alpha 7) source it appears to be possible to set the Ff profile of the RemoteWebDriver via the capabilities API. Yet it is not clear how one would do it. Any ideas?
4
votes
3answers
1k views

Selenium 2.0 / WebDriver clickAt() method unsupported

Selenium clickAt() function is throwing "Unsupported" exception while using with WebDriver (WebDriverBackedSelenium or just Selenium 2.x using ChromeDriver). Is there any way to use this Selenium ...
4
votes
2answers
5k views

WebDriver Selenium API: ElementNotFoundErrorException when Element is clearly there !

sometimes when running tests on WebDriver with Javascript turned off, WebDriver crashes due to an ElementNotFound Error when it finds an element, and attempts to click it. However, the element is ...
4
votes
2answers
2k views

How do I use the HtmlUnit driver with Selenium through the Python bindings?

I'm using WebDriver through the Python bindings located on Google's site. According to the documentation here, it supports four browsers: Chrome, IE, Firefox, and HtmlUnit. I can import the Firefox ...
4
votes
2answers
463 views

selenium.wait_for_condition equivalent in Python bindings for WebDriver

I'm moving some tests from Selenium to the WebDriver. My problem is that I can't find an equivalent for selenium.wait_for_condition. Do the Python bindings have this at the moment, or is it still ...
4
votes
3answers
739 views

If I start anew, should I start with Watir-WebDriver?

My team has an automation solution that uses watir. In fact, we have 2 versions of it, one for one release of our software and another for another release. I find that changing versions of watir used ...
4
votes
1answer
5k views

Selenium Webdriver example in Python

I had written a scipt in Java with Webdriver and it worked fine and below is the code for the sample import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import ...
4
votes
1answer
2k views

How do I change the default request timeout for Selenium 2?

I am currently using Selenium 2.0a2 in Java to access the Internet using an HtmlUnitDriver instance. The problem I am facing is that, when I attempt to access slow websites, the request times out. How ...
3
votes
1answer
151 views

Drag-and-drop with ChromeDriver

I want to do drag-and-drop with ChromeDriver. The only WebDriver way of doing drag-and-drop I found is using the "advanced user interactions API". Unfortunately, the ChromeDriver documentation has the ...
3
votes
1answer
70 views

getting text from textfield in alerts

In our web-aplication we use several alerts like this: I need to retrieve link from this alert. I did: Alert alert = driver.switchTo().alert(); String link = alert.getText(); But ...
3
votes
0answers
73 views

Workarounds for Selenium not clicking button with InternetExplorerDriver

I've got a button on a webpage that Webdriver will not click when I'm running via IE - I've tried the below workarounds but no luck - Clicking via Javascript: ((JavascriptExecutor) ...

1 2 3 4 5 15