Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created January 29, 2021 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angiejones/79844b19d8fd0eec81fb5d0c71b1967b to your computer and use it in GitHub Desktop.
Save angiejones/79844b19d8fd0eec81fb5d0c71b1967b to your computer and use it in GitHub Desktop.
Playwright - enter text
public class SearchPage {
private Page page;
private String locator_searchBar = "#searchBar";
public SearchPage(Page page){
this.page = page;
}
public void search(String query) {
page.fill(locator_searchBar, query);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment