Skip to content

Instantly share code, notes, and snippets.

@adamgoucher
Created June 4, 2013 00:39
Show Gist options
  • Save adamgoucher/5702724 to your computer and use it in GitHub Desktop.
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
<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