summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/installation/assets/puppeteer/bidi.js
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/test/installation/assets/puppeteer/bidi.js')
-rw-r--r--remote/test/puppeteer/test/installation/assets/puppeteer/bidi.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/installation/assets/puppeteer/bidi.js b/remote/test/puppeteer/test/installation/assets/puppeteer/bidi.js
new file mode 100644
index 0000000000..3e1df93654
--- /dev/null
+++ b/remote/test/puppeteer/test/installation/assets/puppeteer/bidi.js
@@ -0,0 +1,17 @@
+/**
+ * @license
+ * Copyright 2023 Google Inc.
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+import puppeteer from 'puppeteer';
+(async () => {
+ const browser = await puppeteer.launch({
+ protocol: 'webDriverBiDi',
+ });
+ const page = await browser.newPage();
+ await page.goto('http://example.com');
+ await page.$('h1');
+ await page.screenshot({path: 'example.png'});
+ await browser.close();
+})();