Selenium: Difference between revisions
From Genecats
Jump to navigationJump to search
No edit summary |
m (adding sections) |
||
Line 3: | Line 3: | ||
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... | ||
=The Basics= | |||
* [http://seleniumhq.org/ Selenium Website] | * [http://seleniumhq.org/ Selenium Website] | ||
Line 12: | Line 14: | ||
* [http://seleniumhq.org/docs/ Selenium documentation] | * [http://seleniumhq.org/docs/ Selenium documentation] | ||
** [http://seleniumhq.org/docs/06_test_design_considerations.html Test Design Considerations] | ** [http://seleniumhq.org/docs/06_test_design_considerations.html Test Design Considerations] | ||
=Element Locators= | |||
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: | ||
Line 18: | Line 22: | ||
* [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] | ||
=Resources= |
Revision as of 00:48, 19 November 2011
This is mostly a place holder while we develop more content. Here are some useful links...
The Basics
Element Locators
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: