Secondly WebdriverBackedSelenium will be slower as you are not really using
WebDriver.
Best regards,
Eric
--
You received this message because you are subscribed to the Google Groups
"webdriver" group.
To post to this group, send email to webd...@googlegroups.com.
To unsubscribe from this group, send email to
webdriver+...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/webdriver?hl=en.
I'm seeing the same issue. I'm migrating ruby-based tests from Selenium::Client::Driver to Selenium::WebDriver and am seeing substantial slowdown in my scripts (I don't have hard benchmarks, but my scripts now take approximately twice as long to run). Everything I read led me to suggest WebDriver would be faster but this is not my experience, I'm seeing the opposite.
As with Eric, I am going straight to WebDriver, not using WebDriver-backed Selenium.
Writing my scripts in Ruby, using Firefox 13 as my browser.
Hi,
I am using the JAVA for my web-driver tests and as compared to the results with RC there is high performance issue.
I executed a single test suite with both Selenium RC on remote machine and the same suite with web-diver on same remote machine. Performance of execution is too low.
You don't give any indication what code you're actually running either, or the structure of the HTML you're executing against. For example, RC and WebDriver have slightly different algorithms for finding the visible text of an element. WebDriver's is much more well-defined and rigorous, but that makes it computationally expensive, especially for a deeply-nested DOM. Determining the visibility of an element has similar performance characteristics.
While it's true that WebDriver can *in general* be faster than RC, as with nearly all performance benchmarks in computer science, the actual performance you'll see will depend on a very wide array of factors.