Slide 25
Slide 25 text
Native vs Web View Context
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!
});!
});!
!
// context switch native to web view!
!
it('should confirm spans are visible', function(done) {!
h.driver.elementsByTagName('span', function(err, els) {!
// do something with span elements (web DOM)!
});!
});!
+