You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 11, 2019. It is now read-only.
Given(/^I am on the Google site for "(.*?)"$/, async (text) => {
await toplinks.navigate_SearchImages();
let textUI = await toplinks.getText_Search();
browser.logger.info("This is what I am looking for");
await expect(textUI).equal('Feeling Lucky');
});
When the code runs this does not print out anything in the console or in the file. 1) Can this library be used with async functions 2) Am I using it the right way 3) Could someone please add an example for protractor in documentation?