This function allows us to navigate directly to the Main URL that we enter in the POM.xml file.
public void auto_openNewURLInBrowser(String url){
try {
page = createPlaywrightPageInstance(System.getProperty("browser"));
page.navigate(url);
}
catch (Exception e) {
e.printStackTrace();
}
}