-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1c97b5
commit a98e1af
Showing
7 changed files
with
1,989 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Tutorial: Testing Chrome Extensions with Puppeteer | ||
|
||
## Overview | ||
|
||
This is the sample code for the [Testing Chrome Extensions with Puppeteer](https://developer.chrome.com/docs/extensions/mv3/tut_puppeteer-testing/) tutorial. | ||
|
||
## Running the tests | ||
|
||
1. Install [Node.JS](https://nodejs.org/). | ||
2. Run `npm install`. | ||
3. Run `npm start`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// eslint-disable-next-line no-undef | ||
const puppeteer = require('puppeteer'); | ||
|
||
const EXTENSION_PATH = '../../api-samples/history/showHistory'; | ||
const EXTENSION_ID = 'jkomgjfbbjocikdmilgaehbfpllalmia'; | ||
|
||
async function run() { | ||
const browser = await puppeteer.launch({ | ||
headless: false, | ||
args: [ | ||
`--disable-extensions-except=${EXTENSION_PATH}`, | ||
`--load-extension=${EXTENSION_PATH}` | ||
] | ||
}); | ||
|
||
const page = await browser.newPage(); | ||
await page.goto(`chrome-extension://${EXTENSION_ID}/popup.html`); | ||
|
||
const list = await page.$('ul'); | ||
const children = await list.$$('li'); | ||
|
||
if (children.length !== 1) { | ||
throw new Error('Unexpected number of list elements!'); | ||
} | ||
|
||
await browser.close(); | ||
} | ||
|
||
run(); |
Oops, something went wrong.