When selecting an item from the list gets a timeout. The item is selected, but the test ends with an error message. Does anyone know what I should change?
app.e2e-spec.ts
it('applications - select item from list', () => {
page.scroolPageDown();
page.clickLastPage();
page.selectItemFromList();
page.scroolPage();
});
app.po.ts
selectItemFromList() {
return element
.all(by.css('.list-item .item-body'))
.last()
.click();
}