Chrome DevTools Java Client is a DevTools client - in Java. (: It can be used for instrumenting, inspecting, debuging and profiling Chromium, Chrome and other Blink-based browsers. [1]
For more information on DevTools, see https://chromedevtools.github.io/devtools-protocol/.
v1.3.6 tested on Google Chrome Version 67.0.3396.87. Protocol files from dev-tools-protocol#1aa7b31ca7
v2.0.0 tested on Google Chrome Version 76.0.3809.100. Protocol files from dev-tools-protocol#e1fb93bd76
[1] https://chromedevtools.github.io/devtools-protocol/.
Add the following dependency to your pom.xml:
<dependency>
<groupId>com.github.kklisura.cdt</groupId>
<artifactId>cdt-java-client</artifactId>
<version>2.1.0</version>
</dependency>You can use following code, taken from, LogRequestsExample:
package com.github.kklisura.cdt.examples;
import com.github.kklisura.cdt.launch.ChromeLauncher;
import com.github.kklisura.cdt.protocol.commands.Network;
import com.github.kklisura.cdt.protocol.commands.Page;
import com.github.kklisura.cdt.services.ChromeDevToolsService;
import com.github.kklisura.cdt.services.ChromeService;
import com.github.kklisura.cdt.services.types.ChromeTab;
/**
* Log requests example with DevTools java client.
*
* <p>The following example will open chrome, create a tab with about:blank url, subscribe to
* requestWillBeSent event and then navigate to github.com.
*
* @author Kenan Klisura
*/
public class LogRequestsExample {
public static void main(String[] args) {
// Create chrome launcher.
final ChromeLauncher launcher = new ChromeLauncher();
// Launch chrome either as headless (true) or regular (false).
final ChromeService chromeService = launcher.launch(false);
// Create empty tab ie about:blank.
final ChromeTab tab = chromeService.createTab();
// Get DevTools service to this tab
final ChromeDevToolsService devToolsService = chromeService.createDevToolsService(tab);
// Get individual commands
final Page page = devToolsService.getPage();
final Network network = devToolsService.getNetwork();
// Log requests with onRequestWillBeSent event handler.
network.onRequestWillBeSent(
event ->
System.out.printf(
"request: %s %s%s",
event.getRequest().getMethod(),
event.getRequest().getUrl(),
System.lineSeparator()));
network.onLoadingFinished(
event -> {
// Close the tab and close the browser when loading finishes.
chromeService.closeTab(tab);
launcher.close();
});
// Enable network events.
network.enable();
// Navigate to github.com.
page.navigate("http://github.com");
devToolsService.waitUntilClosed();
}
}For more examples, see cdt-examples.
When running many jobs on a single shared Chrome instance, use createIsolatedTab() to give each job its own browser context. Tabs in different browser contexts share no cookies, storage, or cache, so jobs cannot interfere with each other.
IsolatedTab is AutoCloseable: closing it disposes the dev tools session, the tab target and the browser context in one step.
try (IsolatedTab tab = chromeService.createIsolatedTab()) {
ChromeDevToolsService devToolsService = tab.getDevToolsService();
// ... drive the tab ...
}
// tab, its target, and its browser context are all disposed hereWithout IsolatedTab, the equivalent cleanup requires a three-level try/finally:
Target target = chromeService.createBrowserDevToolsService().getTarget();
String browserContextId = target.createBrowserContext();
try {
String targetId = target.createTarget(/* url=about:blank, browserContextId */);
ChromeDevToolsService devToolsService = chromeService.createDevToolsService(targetId);
try {
// ... drive the tab ...
} finally {
devToolsService.close();
target.closeTarget(targetId);
}
} finally {
target.disposeBrowserContext(browserContextId);
}make verify
make sonar-analysis
Chrome DevTools Java Client is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.