Upon hitting the debugger in the code snippet below, the value of 'thing/item' shows as empty (refer to the image).
it('CheckAllLinks:', function () {
browser.ignoreSynchronization = true;
browser
.findElements(by.tagName('a'))
.then(function (items) {
items.forEach(function (item) {
var thing = item;
debugger;
});
});
});
For instance, when using the immediate window in Visual Studio, any call to these methods only results in three dots (...).
Although I acknowledge that this is a promise, I am unsure of how to utilize any of the methods to validate content and click the link as well...