Slide 18
Slide 18 text
Native vs Webview 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
});
});
it('should confirm spans are visible', function(done) {
h.driver.elementsByTagName('span', function(err, els) {
// do something with span elements (DOM)
});
});
+
Sunday, September 15, 13