You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api/accessibility.rst
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,10 @@ Accessibility
12
12
Types
13
13
-----
14
14
15
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
15
+
Generally, you do not need to instantiate CDP types
16
+
yourself. Instead, the API creates objects for you as return
17
+
values from commands, and then you can use those objects as
18
+
arguments to other commands.
16
19
17
20
.. autoclass:: AXNodeId
18
21
:members:
@@ -67,6 +70,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
67
70
Commands
68
71
--------
69
72
73
+
Each command is a generator function. The return
74
+
type ``Generator[x, y, z]`` indicates that the generator
75
+
*yields* arguments of type ``x``, it must be resumed with
76
+
an argument of type ``y``, and it returns type ``z``. In
77
+
this library, types ``x`` and ``y`` are the same for all
78
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/animation.rst
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,10 @@ Animation
12
12
Types
13
13
-----
14
14
15
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
15
+
Generally, you do not need to instantiate CDP types
16
+
yourself. Instead, the API creates objects for you as return
17
+
values from commands, and then you can use those objects as
18
+
arguments to other commands.
16
19
17
20
.. autoclass:: Animation
18
21
:members:
@@ -37,6 +40,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
37
40
Commands
38
41
--------
39
42
43
+
Each command is a generator function. The return
44
+
type ``Generator[x, y, z]`` indicates that the generator
45
+
*yields* arguments of type ``x``, it must be resumed with
46
+
an argument of type ``y``, and it returns type ``z``. In
47
+
this library, types ``x`` and ``y`` are the same for all
48
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/application_cache.rst
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,10 @@ ApplicationCache
12
12
Types
13
13
-----
14
14
15
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
15
+
Generally, you do not need to instantiate CDP types
16
+
yourself. Instead, the API creates objects for you as return
17
+
values from commands, and then you can use those objects as
18
+
arguments to other commands.
16
19
17
20
.. autoclass:: ApplicationCacheResource
18
21
:members:
@@ -32,6 +35,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
32
35
Commands
33
36
--------
34
37
38
+
Each command is a generator function. The return
39
+
type ``Generator[x, y, z]`` indicates that the generator
40
+
*yields* arguments of type ``x``, it must be resumed with
41
+
an argument of type ``y``, and it returns type ``z``. In
42
+
this library, types ``x`` and ``y`` are the same for all
43
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/audits.rst
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,23 @@ Audits domain allows investigation of page violations and possible improvements.
14
14
Types
15
15
-----
16
16
17
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
17
+
*There are no types in this module.*
18
18
19
19
Commands
20
20
--------
21
21
22
+
Each command is a generator function. The return
23
+
type ``Generator[x, y, z]`` indicates that the generator
24
+
*yields* arguments of type ``x``, it must be resumed with
25
+
an argument of type ``y``, and it returns type ``z``. In
26
+
this library, types ``x`` and ``y`` are the same for all
27
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/background_service.rst
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,10 @@ Defines events for background web platform features.
14
14
Types
15
15
-----
16
16
17
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
17
+
Generally, you do not need to instantiate CDP types
18
+
yourself. Instead, the API creates objects for you as return
19
+
values from commands, and then you can use those objects as
20
+
arguments to other commands.
18
21
19
22
.. autoclass:: ServiceName
20
23
:members:
@@ -34,6 +37,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
34
37
Commands
35
38
--------
36
39
40
+
Each command is a generator function. The return
41
+
type ``Generator[x, y, z]`` indicates that the generator
42
+
*yields* arguments of type ``x``, it must be resumed with
43
+
an argument of type ``y``, and it returns type ``z``. In
44
+
this library, types ``x`` and ``y`` are the same for all
45
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/browser.rst
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,10 @@ The Browser domain defines methods and events for browser managing.
12
12
Types
13
13
-----
14
14
15
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
15
+
Generally, you do not need to instantiate CDP types
16
+
yourself. Instead, the API creates objects for you as return
17
+
values from commands, and then you can use those objects as
18
+
arguments to other commands.
16
19
17
20
.. autoclass:: WindowID
18
21
:members:
@@ -47,6 +50,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
47
50
Commands
48
51
--------
49
52
53
+
Each command is a generator function. The return
54
+
type ``Generator[x, y, z]`` indicates that the generator
55
+
*yields* arguments of type ``x``, it must be resumed with
56
+
an argument of type ``y``, and it returns type ``z``. In
57
+
this library, types ``x`` and ``y`` are the same for all
58
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/cache_storage.rst
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,10 @@ CacheStorage
12
12
Types
13
13
-----
14
14
15
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
15
+
Generally, you do not need to instantiate CDP types
16
+
yourself. Instead, the API creates objects for you as return
17
+
values from commands, and then you can use those objects as
18
+
arguments to other commands.
16
19
17
20
.. autoclass:: CacheId
18
21
:members:
@@ -47,6 +50,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
47
50
Commands
48
51
--------
49
52
53
+
Each command is a generator function. The return
54
+
type ``Generator[x, y, z]`` indicates that the generator
55
+
*yields* arguments of type ``x``, it must be resumed with
56
+
an argument of type ``y``, and it returns type ``z``. In
57
+
this library, types ``x`` and ``y`` are the same for all
58
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/cast.rst
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,10 @@ functionalities.
15
15
Types
16
16
-----
17
17
18
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
18
+
Generally, you do not need to instantiate CDP types
19
+
yourself. Instead, the API creates objects for you as return
20
+
values from commands, and then you can use those objects as
21
+
arguments to other commands.
19
22
20
23
.. autoclass:: Sink
21
24
:members:
@@ -25,6 +28,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
25
28
Commands
26
29
--------
27
30
31
+
Each command is a generator function. The return
32
+
type ``Generator[x, y, z]`` indicates that the generator
33
+
*yields* arguments of type ``x``, it must be resumed with
34
+
an argument of type ``y``, and it returns type ``z``. In
35
+
this library, types ``x`` and ``y`` are the same for all
36
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/console.rst
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,10 @@ This domain is deprecated - use Runtime or Log instead.
12
12
Types
13
13
-----
14
14
15
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
15
+
Generally, you do not need to instantiate CDP types
16
+
yourself. Instead, the API creates objects for you as return
17
+
values from commands, and then you can use those objects as
18
+
arguments to other commands.
16
19
17
20
.. autoclass:: ConsoleMessage
18
21
:members:
@@ -22,6 +25,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
22
25
Commands
23
26
--------
24
27
28
+
Each command is a generator function. The return
29
+
type ``Generator[x, y, z]`` indicates that the generator
30
+
*yields* arguments of type ``x``, it must be resumed with
31
+
an argument of type ``y``, and it returns type ``z``. In
32
+
this library, types ``x`` and ``y`` are the same for all
33
+
commands, and ``z`` is the return type you should pay attention
Copy file name to clipboardExpand all lines: docs/api/css.rst
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,10 @@ subsequently load the required stylesheet contents using the `getStyleSheet[Text
19
19
Types
20
20
-----
21
21
22
-
Generally you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.
22
+
Generally, you do not need to instantiate CDP types
23
+
yourself. Instead, the API creates objects for you as return
24
+
values from commands, and then you can use those objects as
25
+
arguments to other commands.
23
26
24
27
.. autoclass:: StyleSheetId
25
28
:members:
@@ -139,6 +142,15 @@ Generally you do not need to instantiate CDP types yourself. Instead, the API cr
139
142
Commands
140
143
--------
141
144
145
+
Each command is a generator function. The return
146
+
type ``Generator[x, y, z]`` indicates that the generator
147
+
*yields* arguments of type ``x``, it must be resumed with
148
+
an argument of type ``y``, and it returns type ``z``. In
149
+
this library, types ``x`` and ``y`` are the same for all
150
+
commands, and ``z`` is the return type you should pay attention
0 commit comments