2024-02-05 09:26:37 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2024 Google Inc.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2022-10-28 06:49:28 +00:00
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
|
|
module.exports = {
|
|
|
|
docs: [
|
2024-04-11 09:08:28 +00:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Introduction',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
title: 'Introduction',
|
|
|
|
keywords: ['introduction'],
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
'guides/what-is-puppeteer',
|
|
|
|
'guides/installation',
|
|
|
|
'guides/getting-started',
|
|
|
|
'guides/system-requirements',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Core concepts',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
title: 'Core concepts',
|
|
|
|
keywords: ['core-concepts'],
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
'guides/browser-management',
|
|
|
|
'guides/page-interactions',
|
|
|
|
'guides/javascript-execution',
|
|
|
|
'guides/network-logging',
|
|
|
|
],
|
|
|
|
},
|
2022-10-28 06:49:28 +00:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Guides',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
2024-04-11 09:08:28 +00:00
|
|
|
title: 'Guides',
|
2022-10-28 06:49:28 +00:00
|
|
|
keywords: ['guides'],
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
'guides/configuration',
|
2022-11-28 10:59:21 +00:00
|
|
|
'guides/debugging',
|
2024-04-11 09:08:28 +00:00
|
|
|
'guides/network-interception',
|
|
|
|
'guides/headless-modes',
|
|
|
|
'guides/screenshots',
|
|
|
|
'guides/pdf-generation',
|
|
|
|
'guides/chrome-extensions',
|
|
|
|
'guides/cookies',
|
|
|
|
'guides/files',
|
2022-10-28 06:49:28 +00:00
|
|
|
],
|
|
|
|
},
|
2023-08-23 12:38:12 +00:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Integrations',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
title: 'Puppeteer Integrations',
|
|
|
|
keywords: ['integrations'],
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2024-04-11 09:08:28 +00:00
|
|
|
label: 'Angular',
|
|
|
|
id: 'guides/ng-schematics',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Docker',
|
|
|
|
id: 'guides/docker',
|
2023-08-23 12:38:12 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2024-04-11 09:08:28 +00:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Community',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
title: 'Community',
|
|
|
|
keywords: ['community'],
|
|
|
|
},
|
|
|
|
items: ['contributing', 'troubleshooting', 'guides/links'],
|
|
|
|
},
|
2023-11-28 12:07:53 +00:00
|
|
|
'webdriver-bidi',
|
2024-04-08 09:14:55 +00:00
|
|
|
'supported-browsers',
|
2022-10-28 06:49:28 +00:00
|
|
|
'faq',
|
|
|
|
],
|
|
|
|
api: [
|
|
|
|
{
|
|
|
|
type: 'autogenerated',
|
|
|
|
dirName: 'api',
|
|
|
|
},
|
|
|
|
],
|
2023-04-06 12:23:10 +00:00
|
|
|
browsersApi: [
|
|
|
|
{
|
|
|
|
type: 'autogenerated',
|
|
|
|
dirName: 'browsers-api',
|
|
|
|
},
|
|
|
|
],
|
2022-10-28 06:49:28 +00:00
|
|
|
};
|