Skip to content

Instantly share code, notes, and snippets.

@sourishkrout
Created September 14, 2013 09:03
Show Gist options
  • Save sourishkrout/6560316 to your computer and use it in GitHub Desktop.
Save sourishkrout/6560316 to your computer and use it in GitHub Desktop.
it('should confirm table cell element is visible', function(done) {
h.driver.elementsByTagName('tableCell', function(err, els) {
// do something with native table cell (iOS) elements
});
});
it('should confirm spans are visible', function(done) {
h.driver.elementsByTagName('span', function(err, els) {
// do something with span elements (DOM)
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment