Posts by Glauco Diogo • 11 points
1 post
-
1
votes2
answers3815
viewsA: Selenium WebDriver_ Access page without opening browser
There’s a simple way to solve this problem... Just replace the default Webdriver creation Of: WebDriver driver = new ChromeDriver(); To: ChromeOptions options = new ChromeOptions();…