Selenium: Difference between revisions

From Genecats
Jump to navigationJump to search
(Started new selenium page)
 
No edit summary
Line 1: Line 1:
  [[Category:Browser QA]]
  [[Category:Browser QA]]
  [[Category:Selenium]]
  [[Category:Selenium]]
This is mostly a place holder while we develop more content.  Here are some useful links...
* [http://seleniumhq.org/ Selenium Website]
* [http://seleniumhq.org/download/ Selenium downloads]
* [http://release.seleniumhq.org/selenium-core/1.0/reference.html Selenium reference]
* [http://seleniumhq.org/docs/ Selenium documentation]
** [http://seleniumhq.org/docs/06_test_design_considerations.html Test Design Considerations]
A common way to find elements on a page using Selenium is xPath, however, we should use CSS selectors when possible, as the tests run faster - especially in IE. Here's some info:
* [http://saucelabs.com/blog/index.php/2011/05/why-css-locators-are-the-way-to-go-vs-xpath/ Why CSS Locators are the way to go vs XPath]
* [http://saucelabs.com/blog/index.php/2010/01/selenium-totw-css-selectors-in-selenium-demystified/ Selenium Tips: CSS Selectors in Selenium Demystified]

Revision as of 20:07, 18 November 2011


This is mostly a place holder while we develop more content. Here are some useful links...

A common way to find elements on a page using Selenium is xPath, however, we should use CSS selectors when possible, as the tests run faster - especially in IE. Here's some info: