We have a project where we must automate a test of a page with Selenium WebDrive , but being active, that is, we are not going to open a window or browser with the URL, it must already be active and make them the necessary tests
Normally we configure the driver and we take the properties of the page
driver.get(prop.getProperty("url")); // esto abre un nueva ventana y comienza la prueba
How should we configure the driver of an open or active page using Selenium Webdriver ?
Thanks