I have two tests:
it(\'should filter the phone list as user types into the search box\', function() { var results = ptor.findElements(protractor.By.re
Using PageObject pattern and async/await, I have such code that works:
async clearForm() { await this.nameInput.clear(); await this.descriptionInput.clear(); }