-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathsidebars.js
More file actions
130 lines (130 loc) · 4.64 KB
/
sidebars.js
File metadata and controls
130 lines (130 loc) · 4.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
module.exports = {
docs: [
{
type: 'category',
label: 'Getting Started',
items: [
{ type: 'doc', id: 'intro' },
{ type: 'doc', id: 'writing-tests' },
{ type: 'doc', id: 'codegen-intro' },
{ type: 'doc', id: 'running-tests' },
{ type: 'doc', id: 'trace-viewer-intro' },
{ type: 'doc', id: 'ci-intro' },
{ type: 'doc', id: 'test-runners' }
],
collapsed: false
},
{ type: 'doc', id: 'library' },
{ type: 'doc', id: 'release-notes' },
{
type: 'category',
label: 'Guides',
items: [
{ type: 'doc', id: 'input' },
{ type: 'doc', id: 'actionability' },
{ type: 'doc', id: 'api-testing' },
{ type: 'doc', id: 'test-assertions' },
{ type: 'doc', id: 'auth' },
{ type: 'doc', id: 'browsers' },
{ type: 'doc', id: 'chrome-extensions' },
{ type: 'doc', id: 'clock' },
{ type: 'doc', id: 'debug' },
{ type: 'doc', id: 'dialogs' },
{ type: 'doc', id: 'downloads' },
{ type: 'doc', id: 'emulation' },
{ type: 'doc', id: 'evaluating' },
{ type: 'doc', id: 'events' },
{ type: 'doc', id: 'extensibility' },
{ type: 'doc', id: 'frames' },
{ type: 'doc', id: 'handles' },
{ type: 'doc', id: 'browser-contexts' },
{ type: 'doc', id: 'locators' },
{ type: 'doc', id: 'mock' },
{ type: 'doc', id: 'navigations' },
{ type: 'doc', id: 'network' },
{ type: 'doc', id: 'other-locators' },
{ type: 'doc', id: 'pages' },
{ type: 'doc', id: 'pom' },
{ type: 'doc', id: 'screenshots' },
{ type: 'doc', id: 'aria-snapshots' },
{ type: 'doc', id: 'codegen' },
{ type: 'doc', id: 'touch-events' },
{ type: 'doc', id: 'trace-viewer' },
{ type: 'doc', id: 'videos' },
{ type: 'doc', id: 'webview2' },
],
collapsed: false
},
{
type: 'category',
label: 'Integrations',
items: [
{ type: 'doc', id: 'docker' },
{ type: 'doc', id: 'ci' },
{ type: 'doc', id: 'selenium-grid' }
],
collapsed: true
},
{ type: 'doc', id: 'languages' }
],
api: [
{
type: 'category',
label: 'API reference',
items: [
{ type: 'doc', id: 'api/class-playwright' },
{
type: 'category',
label: 'Classes',
items: [
{ type: 'doc', id: 'api/class-apirequest' },
{ type: 'doc', id: 'api/class-apirequestcontext' },
{ type: 'doc', id: 'api/class-apiresponse' },
{ type: 'doc', id: 'api/class-browser' },
{ type: 'doc', id: 'api/class-browsercontext' },
{ type: 'doc', id: 'api/class-browsertype' },
{ type: 'doc', id: 'api/class-cdpsession' },
{ type: 'doc', id: 'api/class-clock' },
{ type: 'doc', id: 'api/class-consolemessage' },
{ type: 'doc', id: 'api/class-dialog' },
{ type: 'doc', id: 'api/class-download' },
{ type: 'doc', id: 'api/class-elementhandle' },
{ type: 'doc', id: 'api/class-error' },
{ type: 'doc', id: 'api/class-filechooser' },
{ type: 'doc', id: 'api/class-frame' },
{ type: 'doc', id: 'api/class-framelocator' },
{ type: 'doc', id: 'api/class-jshandle' },
{ type: 'doc', id: 'api/class-keyboard' },
{ type: 'doc', id: 'api/class-locator' },
{ type: 'doc', id: 'api/class-mouse' },
{ type: 'doc', id: 'api/class-page' },
{ type: 'doc', id: 'api/class-request' },
{ type: 'doc', id: 'api/class-response' },
{ type: 'doc', id: 'api/class-route' },
{ type: 'doc', id: 'api/class-selectors' },
{ type: 'doc', id: 'api/class-timeouterror' },
{ type: 'doc', id: 'api/class-touchscreen' },
{ type: 'doc', id: 'api/class-tracing' },
{ type: 'doc', id: 'api/class-video' },
{ type: 'doc', id: 'api/class-weberror' },
{ type: 'doc', id: 'api/class-websocket' },
{ type: 'doc', id: 'api/class-websocketroute' },
{ type: 'doc', id: 'api/class-worker' }
],
collapsed: false
},
{
type: 'category',
label: 'Assertions',
items: [
{ type: 'doc', id: 'api/class-apiresponseassertions' },
{ type: 'doc', id: 'api/class-locatorassertions' },
{ type: 'doc', id: 'api/class-pageassertions' }
],
collapsed: false
}
],
collapsed: false
}
]
};