MachinePublishers / jBrowserDriver

A programmable, embeddable web browser driver compatible with the Selenium WebDriver spec -- headless, WebKit-based, pure Java
Other
809 stars 143 forks source link

Check content of each request? #230

Open arya6000 opened 7 years ago

arya6000 commented 7 years ago

Is it possible to check the content of each HTTP request that goes through jBrowserDriver inside the Java program without using a proxy?

hollingsworthd commented 7 years ago

There's an issue open to create interceptors. But if you just mean logging, that mostly exists. new JBrowserDriver(Settings.builder().logWire(true).logTrace(true).build() which logs headers and request details.