Category:Selenium: Difference between revisions
From Genecats
Jump to navigationJump to search
(Added some initial content - helpful links.) |
(added bullet points and an extra link to test design considerations) |
||
Line 1: | Line 1: | ||
This is mostly a place holder while we develop more content. Here are some useful links... | This is mostly a place holder while we develop more content. Here are some useful links... | ||
[http://seleniumhq.org/ Selenium Website] | * [http://seleniumhq.org/ Selenium Website] | ||
[http://seleniumhq.org/download/ Selenium downloads] | * [http://seleniumhq.org/download/ Selenium downloads] | ||
[http://release.seleniumhq.org/selenium-core/1.0/reference.html Selenium reference] | * [http://release.seleniumhq.org/selenium-core/1.0/reference.html Selenium reference] | ||
[http://seleniumhq.org/docs/ Selenium documentation] | * [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: | 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/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] | * [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 18:52, 17 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: