@@ -673,7 +673,9 @@ default Page newPage() {
673673 */
674674 Page newPage(NewPageOptions options);
675675 /**
676- * <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
676+ * <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
677+ * which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
678+ * could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
677679 *
678680 * <p> You can use {@link Browser#startTracing Browser.startTracing()} and {@link Browser#stopTracing Browser.stopTracing()} to
679681 * create a trace file that can be opened in Chrome DevTools performance panel.
@@ -690,7 +692,9 @@ default void startTracing(Page page) {
690692 startTracing(page, null);
691693 }
692694 /**
693- * <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
695+ * <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
696+ * which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
697+ * could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
694698 *
695699 * <p> You can use {@link Browser#startTracing Browser.startTracing()} and {@link Browser#stopTracing Browser.stopTracing()} to
696700 * create a trace file that can be opened in Chrome DevTools performance panel.
@@ -705,7 +709,9 @@ default void startTracing() {
705709 startTracing(null);
706710 }
707711 /**
708- * <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
712+ * <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
713+ * which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
714+ * could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
709715 *
710716 * <p> You can use {@link Browser#startTracing Browser.startTracing()} and {@link Browser#stopTracing Browser.stopTracing()} to
711717 * create a trace file that can be opened in Chrome DevTools performance panel.
@@ -720,7 +726,9 @@ default void startTracing() {
720726 */
721727 void startTracing(Page page, StartTracingOptions options);
722728 /**
723- * <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
729+ * <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
730+ * which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
731+ * could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
724732 *
725733 * <p> Returns the buffer with trace data.
726734 */
0 commit comments