-
-
Save angiejones/6d16b27db88504694853f7ba853445ff to your computer and use it in GitHub Desktop.
Playwright - Page Object Modell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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