By tag: Selenium
0
kicks
Automating the Capture of Web Timings with Selenium 2
Capturing load times of pages that you are testing with Selenium 2 using the new Web Timings API that is being built into the browsers. You can use the extension method shown to get this info out of the browsers as more and more support it.
0
kicks
Creating Selenium Tests with Page Object design pattern
A tutorial on how to create highly maintainable Selenium tests but creating tests using the Page Object Design pattern. It allows us to create an object in a programming language that represents the tests. If something were to change in the site we don't need to change the test we just need to chang...
0
kicks
Writing Maintainable Tests
Writing tests as we all know is a good thing as it gives us confidence in what we are working on. Unfortunately we don't give our tests as much care when righting them so this post gives a few tricks and tips for writing maintainable tests
0
kicks
Selenium Two Tutorial using C#/NUnit and InternetExplorerDriver
Tutorial on how to use the latest version of Selenium using C# and NUnit to test websites. The tutorial gives developers a chance to start writing their own tests.
0
kicks
Selenium Two Tutorial using IronPython and InternetExplorerDriver
Tutorial on how to use the upcoming Selenium 2 release using IronPython to drive the tests. There is an example to help developers get used to using it before its fully released
0
kicks
Selenium Usage in Real Life ASP.NET 2.0 Application
ASP.NET 2.0 and AJAX, quite hard combination for automated testing, but Selenium do the job.