Created
June 4, 2013 00:39
-
-
Save adamgoucher/5702724 to your computer and use it in GitHub Desktop.
what i think we should be looking for in terms of a test suite site
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <body> | |
| <h2>Element Visibility</h2> | |
| <p id="explanation">WebDriver mimic's a user's ability to read text inside elements. That is, | |
| if it is hidden, they cannot read it. There are two text elments below. The one with an id of | |
| <i>hidden</i> has the text <i>hidden</i>. And the element with an id of <i>visible</i> has | |
| the text <i>visible</i> | |
| </p> | |
| <div id="examples"> | |
| <div id="hidden">hidden</div> | |
| <div id="visible">visible</div> | |
| </div> | |
| <div id="tags">core, elements</div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment