Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. When(/^I enter "([^"]*)" into the search box$/, function(arg1) {
  2. RedditPage.enterText.setValue(arg1);
  3. RedditPage.searchInput.getValue().should.equal(arg1);
  4. });
  5. page object has:
  6. async enterText (item) {
  7. this.searchInput.clearElement();
  8. this.searchInput.setValue(item);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement