-
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.
Add Puppeteer testing tutorial (#1016)
* Add Puppeteer testing tutorial * Use Jest as test runner * Add comment on changing headless mode
- Loading branch information
1 parent
477973e
commit b25a56b
Showing
10 changed files
with
9,817 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,7 @@ | ||
{ | ||
"extends": ["../../.eslintrc"], | ||
"plugins": ["jest"], | ||
"env": { | ||
"jest/globals": true | ||
} | ||
} |
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,47 @@ | ||
// 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'; | ||
|
||
let browser; | ||
|
||
beforeEach(async () => { | ||
browser = await puppeteer.launch({ | ||
// Set to 'new' to hide Chrome if running as part of an automated build. | ||
headless: false, | ||
args: [ | ||
`--disable-extensions-except=${EXTENSION_PATH}`, | ||
`--load-extension=${EXTENSION_PATH}` | ||
] | ||
}); | ||
}); | ||
|
||
afterEach(async () => { | ||
await browser.close(); | ||
browser = undefined; | ||
}); | ||
|
||
test('one history item is visible', async () => { | ||
const page = await browser.newPage(); | ||
await page.goto(`chrome-extension://${EXTENSION_ID}/popup.html`); | ||
|
||
const list = await page.$('ul'); | ||
const children = await list.$$('li'); | ||
|
||
expect(children.length).toBe(1); | ||
}); |
Oops, something went wrong.