DotNetShoutout - Stories tagged with WebDriver
2
Shouts

Sharing a WebDriver across TestFixtures

published 460 days, 8 hours, 32 minutes ago posted by tduponttdupont 462 days, 8 hours, 11 minutes ago
Monday, February 13, 2012 8:04:31 PM GMT Saturday, February 11, 2012 8:25:38 PM GMT
WebDriver (also known as Selenium 2.0) is a web testing tool that is both useful and easy, which is a very rare find. If you are doing web development with ASP.NET, you need to take 30 minutes of your time and go try out WebDriver. That is all the time it will take to get you hooked. To launch a browser you need only new up a Driver object for that browser. I used to create a new Driver in my TestFixtureSetup, and then close and dispose of that in the testFixtureTearDown. However now that Firefox does n... (more)
category: Web Dev | clicked: 13 | comment | | source: www.tomdupont.net
tags: WebDriver, unit testing, Selenium
2
Shouts

Dean Hume - Selenium Webdriver - Wait for an element to load

published 566 days, 7 hours, 55 minutes ago posted by deanomachinodeanomachino 568 days, 20 hours, 6 minutes ago
Sunday, October 30, 2011 8:41:35 PM GMT Friday, October 28, 2011 8:31:11 AM GMT
Coding Tips & TricksHomeAboutContactCV Selenium Webdriver - Wait for an element to load Tweet I am currently working on a project that uses a lot of AJAX and delayed loading of HTML elements. This means that when a page loads, the object that I am looking for might not necessarily have appeared yet. In many instances the element may only be added to the DOM after an amount of time by the use of some JavaScript. At first, we decided to write our automated tests as normal using Seleni... (more)
category: Web Dev | clicked: 71 | 1 comment | | source: deanhume.com
tags: C#, Ajax, WebDriver, Selenium
2
Shouts

Using the InternetExplorerDriver for WebDriver

posted by tduponttdupont 579 days, 5 hours, 13 minutes ago
Monday, October 17, 2011 11:24:22 PM GMT
Are you getting this error when trying to use the InternetExplorerDriver for WebDriver (Selenium 2.0)? "System.InvalidOperationException: Unexpected error launching Internet Explorer. Protected Mode must be set to the same value (enabled or disabled) for all zones. (NoSuchDriver)" Don't worry, it's easier to fix than it sounds... (more)
category: Web Dev | clicked: 20 | comment | | source: www.tomdupont.net
tags: TDD, Selenium 2, Internet Explorer, Unit Test, WebDriver