Skip to content

Commit 53bcd4e

Browse files
committed
deploy: 383d032
1 parent 0ac53c5 commit 53bcd4e

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

async_api/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6093,6 +6093,8 @@ <h2 id="parameters">Parameters</h2>
60936093
Triggers a `change` and `input` event once all the provided options have been selected. If element is not a `&lt;select&gt;`
60946094
element, the method throws an error.
60956095

6096+
Will wait until all specified options are present in the `&lt;select&gt;` element.
6097+
60966098
```py
60976099
# single selection matching the value
60986100
await handle.select_option(\&#34;blue\&#34;)
@@ -8516,6 +8518,7 @@ <h2 id="parameters">Parameters</h2>
85168518
<p>Returns the array of option values that have been successfully selected.</p>
85178519
<p>Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If element is not a <code>&lt;select&gt;</code>
85188520
element, the method throws an error.</p>
8521+
<p>Will wait until all specified options are present in the <code>&lt;select&gt;</code> element.</p>
85198522
<pre><code class="language-py"># single selection matching the value
85208523
await handle.select_option(&quot;blue&quot;)
85218524
# single selection matching the label
@@ -8568,6 +8571,8 @@ <h2 id="returns">Returns</h2>
85688571
Triggers a `change` and `input` event once all the provided options have been selected. If element is not a `&lt;select&gt;`
85698572
element, the method throws an error.
85708573

8574+
Will wait until all specified options are present in the `&lt;select&gt;` element.
8575+
85718576
```py
85728577
# single selection matching the value
85738578
await handle.select_option(\&#34;blue\&#34;)
@@ -11145,6 +11150,8 @@ <h3>Class variables</h3>
1114511150
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
1114611151
matching `selector`, the method throws an error.
1114711152

11153+
Will wait until all specified options are present in the `&lt;select&gt;` element.
11154+
1114811155
```py
1114911156
# single selection matching the value
1115011157
await frame.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)
@@ -14016,6 +14023,7 @@ <h2 id="returns">Returns</h2>
1401614023
<p>Returns the array of option values that have been successfully selected.</p>
1401714024
<p>Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If there's no <code>&lt;select&gt;</code> element
1401814025
matching <code>selector</code>, the method throws an error.</p>
14026+
<p>Will wait until all specified options are present in the <code>&lt;select&gt;</code> element.</p>
1401914027
<pre><code class="language-py"># single selection matching the value
1402014028
await frame.select_option(&quot;select#colors&quot;, &quot;blue&quot;)
1402114029
# single selection matching the label
@@ -14071,6 +14079,8 @@ <h2 id="returns">Returns</h2>
1407114079
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
1407214080
matching `selector`, the method throws an error.
1407314081

14082+
Will wait until all specified options are present in the `&lt;select&gt;` element.
14083+
1407414084
```py
1407514085
# single selection matching the value
1407614086
await frame.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)
@@ -18998,6 +19008,8 @@ <h2 id="parameters">Parameters</h2>
1899819008
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
1899919009
matching `selector`, the method throws an error.
1900019010

19011+
Will wait until all specified options are present in the `&lt;select&gt;` element.
19012+
1900119013
```py
1900219014
# single selection matching the value
1900319015
await page.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)
@@ -24227,6 +24239,7 @@ <h2 id="returns">Returns</h2>
2422724239
<p>Returns the array of option values that have been successfully selected.</p>
2422824240
<p>Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If there's no <code>&lt;select&gt;</code> element
2422924241
matching <code>selector</code>, the method throws an error.</p>
24242+
<p>Will wait until all specified options are present in the <code>&lt;select&gt;</code> element.</p>
2423024243
<pre><code class="language-py"># single selection matching the value
2423124244
await page.select_option(&quot;select#colors&quot;, &quot;blue&quot;)
2423224245
# single selection matching the label
@@ -24284,6 +24297,8 @@ <h2 id="returns">Returns</h2>
2428424297
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
2428524298
matching `selector`, the method throws an error.
2428624299

24300+
Will wait until all specified options are present in the `&lt;select&gt;` element.
24301+
2428724302
```py
2428824303
# single selection matching the value
2428924304
await page.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)

sync_api/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6162,6 +6162,8 @@ <h2 id="parameters">Parameters</h2>
61626162
Triggers a `change` and `input` event once all the provided options have been selected. If element is not a `&lt;select&gt;`
61636163
element, the method throws an error.
61646164

6165+
Will wait until all specified options are present in the `&lt;select&gt;` element.
6166+
61656167
```py
61666168
# single selection matching the value
61676169
handle.select_option(\&#34;blue\&#34;)
@@ -8646,6 +8648,7 @@ <h2 id="parameters">Parameters</h2>
86468648
<p>Returns the array of option values that have been successfully selected.</p>
86478649
<p>Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If element is not a <code>&lt;select&gt;</code>
86488650
element, the method throws an error.</p>
8651+
<p>Will wait until all specified options are present in the <code>&lt;select&gt;</code> element.</p>
86498652
<pre><code class="language-py"># single selection matching the value
86508653
handle.select_option(&quot;blue&quot;)
86518654
# single selection matching both the label
@@ -8708,6 +8711,8 @@ <h2 id="returns">Returns</h2>
87088711
Triggers a `change` and `input` event once all the provided options have been selected. If element is not a `&lt;select&gt;`
87098712
element, the method throws an error.
87108713

8714+
Will wait until all specified options are present in the `&lt;select&gt;` element.
8715+
87118716
```py
87128717
# single selection matching the value
87138718
handle.select_option(\&#34;blue\&#34;)
@@ -11360,6 +11365,8 @@ <h3>Class variables</h3>
1136011365
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
1136111366
matching `selector`, the method throws an error.
1136211367

11368+
Will wait until all specified options are present in the `&lt;select&gt;` element.
11369+
1136311370
```py
1136411371
# single selection matching the value
1136511372
frame.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)
@@ -14282,6 +14289,7 @@ <h2 id="returns">Returns</h2>
1428214289
<p>Returns the array of option values that have been successfully selected.</p>
1428314290
<p>Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If there's no <code>&lt;select&gt;</code> element
1428414291
matching <code>selector</code>, the method throws an error.</p>
14292+
<p>Will wait until all specified options are present in the <code>&lt;select&gt;</code> element.</p>
1428514293
<pre><code class="language-py"># single selection matching the value
1428614294
frame.select_option(&quot;select#colors&quot;, &quot;blue&quot;)
1428714295
# single selection matching both the label
@@ -14337,6 +14345,8 @@ <h2 id="returns">Returns</h2>
1433714345
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
1433814346
matching `selector`, the method throws an error.
1433914347

14348+
Will wait until all specified options are present in the `&lt;select&gt;` element.
14349+
1434014350
```py
1434114351
# single selection matching the value
1434214352
frame.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)
@@ -19345,6 +19355,8 @@ <h2 id="parameters">Parameters</h2>
1934519355
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
1934619356
matching `selector`, the method throws an error.
1934719357

19358+
Will wait until all specified options are present in the `&lt;select&gt;` element.
19359+
1934819360
```py
1934919361
# single selection matching the value
1935019362
page.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)
@@ -24629,6 +24641,7 @@ <h2 id="returns">Returns</h2>
2462924641
<p>Returns the array of option values that have been successfully selected.</p>
2463024642
<p>Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If there's no <code>&lt;select&gt;</code> element
2463124643
matching <code>selector</code>, the method throws an error.</p>
24644+
<p>Will wait until all specified options are present in the <code>&lt;select&gt;</code> element.</p>
2463224645
<pre><code class="language-py"># single selection matching the value
2463324646
page.select_option(&quot;select#colors&quot;, &quot;blue&quot;)
2463424647
# single selection matching both the label
@@ -24686,6 +24699,8 @@ <h2 id="returns">Returns</h2>
2468624699
Triggers a `change` and `input` event once all the provided options have been selected. If there&#39;s no `&lt;select&gt;` element
2468724700
matching `selector`, the method throws an error.
2468824701

24702+
Will wait until all specified options are present in the `&lt;select&gt;` element.
24703+
2468924704
```py
2469024705
# single selection matching the value
2469124706
page.select_option(\&#34;select#colors\&#34;, \&#34;blue\&#34;)

0 commit comments

Comments
 (0)