Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created January 29, 2021 05:18
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/6d16b27db88504694853f7ba853445ff to your computer and use it in GitHub Desktop.
Save angiejones/6d16b27db88504694853f7ba853445ff to your computer and use it in GitHub Desktop.
Playwright - Page Object Modell
package pages;
import com.microsoft.playwright.Page;
public class SearchPage {
private Page page;
public SearchPage(Page page){
this.page = page;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment