chore: release main (#10031)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
parent
34db39e447
commit
fd08e6ad22
@ -1,6 +1,6 @@
|
||||
{
|
||||
"packages/puppeteer": "19.9.0",
|
||||
"packages/puppeteer-core": "19.9.0",
|
||||
"packages/puppeteer": "19.9.1",
|
||||
"packages/puppeteer-core": "19.9.1",
|
||||
"packages/testserver": "0.6.0",
|
||||
"packages/ng-schematics": "0.1.0",
|
||||
"packages/browsers": "0.4.1"
|
||||
|
8
package-lock.json
generated
8
package-lock.json
generated
@ -9259,7 +9259,7 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"packages/puppeteer": {
|
||||
"version": "19.9.0",
|
||||
"version": "19.9.1",
|
||||
"hasInstallScript": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
@ -9268,11 +9268,11 @@
|
||||
"https-proxy-agent": "5.0.1",
|
||||
"progress": "2.0.3",
|
||||
"proxy-from-env": "1.1.0",
|
||||
"puppeteer-core": "19.9.0"
|
||||
"puppeteer-core": "19.9.1"
|
||||
}
|
||||
},
|
||||
"packages/puppeteer-core": {
|
||||
"version": "19.9.0",
|
||||
"version": "19.9.1",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@puppeteer/browsers": "0.4.1",
|
||||
@ -14094,7 +14094,7 @@
|
||||
"https-proxy-agent": "5.0.1",
|
||||
"progress": "2.0.3",
|
||||
"proxy-from-env": "1.1.0",
|
||||
"puppeteer-core": "19.9.0"
|
||||
"puppeteer-core": "19.9.1"
|
||||
}
|
||||
},
|
||||
"puppeteer-core": {
|
||||
|
@ -2,6 +2,13 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
## [19.9.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v19.9.0...puppeteer-core-v19.9.1) (2023-04-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* improve mouse actions ([#10021](https://github.com/puppeteer/puppeteer/issues/10021)) ([34db39e](https://github.com/puppeteer/puppeteer/commit/34db39e4474efee9d4579743026c3d6b6c8e494b))
|
||||
|
||||
## [19.9.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v19.8.5...puppeteer-core-v19.9.0) (2023-04-13)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "puppeteer-core",
|
||||
"version": "19.9.0",
|
||||
"version": "19.9.1",
|
||||
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
||||
"keywords": [
|
||||
"puppeteer",
|
||||
|
@ -8,6 +8,20 @@ All notable changes to this project will be documented in this file. See [standa
|
||||
* dependencies
|
||||
* @puppeteer/browsers bumped from 0.3.0 to 0.3.1
|
||||
|
||||
## [19.9.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v19.9.0...puppeteer-v19.9.1) (2023-04-17)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **puppeteer:** Synchronize puppeteer versions
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* puppeteer-core bumped from 19.9.0 to 19.9.1
|
||||
|
||||
## [19.9.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v19.8.5...puppeteer-v19.9.0) (2023-04-13)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "puppeteer",
|
||||
"version": "19.9.0",
|
||||
"version": "19.9.1",
|
||||
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
||||
"keywords": [
|
||||
"puppeteer",
|
||||
@ -120,7 +120,7 @@
|
||||
"https-proxy-agent": "5.0.1",
|
||||
"progress": "2.0.3",
|
||||
"proxy-from-env": "1.1.0",
|
||||
"puppeteer-core": "19.9.0",
|
||||
"puppeteer-core": "19.9.1",
|
||||
"@puppeteer/browsers": "0.4.1"
|
||||
}
|
||||
}
|
||||
|
@ -1,33 +0,0 @@
|
||||
---
|
||||
sidebar_label: Mouse.click
|
||||
---
|
||||
|
||||
# Mouse.click() method
|
||||
|
||||
Shortcut for `mouse.move`, `mouse.down` and `mouse.up`.
|
||||
|
||||
#### Signature:
|
||||
|
||||
```typescript
|
||||
class Mouse {
|
||||
click(
|
||||
x: number,
|
||||
y: number,
|
||||
options?: MouseOptions & {
|
||||
delay?: number;
|
||||
}
|
||||
): Promise<void>;
|
||||
}
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --------- | --------------------------------------------------------------------- | ------------------------------------------------ |
|
||||
| x | number | Horizontal position of the mouse. |
|
||||
| y | number | Vertical position of the mouse. |
|
||||
| options | [MouseOptions](./puppeteer.mouseoptions.md) & { delay?: number; } | _(Optional)_ Optional <code>MouseOptions</code>. |
|
||||
|
||||
**Returns:**
|
||||
|
||||
Promise<void>
|
@ -1,33 +0,0 @@
|
||||
---
|
||||
sidebar_label: Mouse.move
|
||||
---
|
||||
|
||||
# Mouse.move() method
|
||||
|
||||
Dispatches a `mousemove` event.
|
||||
|
||||
#### Signature:
|
||||
|
||||
```typescript
|
||||
class Mouse {
|
||||
move(
|
||||
x: number,
|
||||
y: number,
|
||||
options?: {
|
||||
steps?: number;
|
||||
}
|
||||
): Promise<void>;
|
||||
}
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| x | number | Horizontal position of the mouse. |
|
||||
| y | number | Vertical position of the mouse. |
|
||||
| options | { steps?: number; } | _(Optional)_ Optional object. If specified, the <code>steps</code> property sends intermediate <code>mousemove</code> events when set to <code>1</code> (default). |
|
||||
|
||||
**Returns:**
|
||||
|
||||
Promise<void>
|
@ -1,11 +0,0 @@
|
||||
---
|
||||
sidebar_label: MouseButton
|
||||
---
|
||||
|
||||
# MouseButton type
|
||||
|
||||
#### Signature:
|
||||
|
||||
```typescript
|
||||
export type MouseButton = 'left' | 'right' | 'middle' | 'back' | 'forward';
|
||||
```
|
@ -97,6 +97,8 @@ sidebar_label: API
|
||||
| [LaunchOptions](./puppeteer.launchoptions.md) | Generic launch options that can be passed when launching any browser. |
|
||||
| [MediaFeature](./puppeteer.mediafeature.md) | |
|
||||
| [Metrics](./puppeteer.metrics.md) | |
|
||||
| [MouseClickOptions](./puppeteer.mouseclickoptions.md) | |
|
||||
| [MouseMoveOptions](./puppeteer.mousemoveoptions.md) | |
|
||||
| [MouseOptions](./puppeteer.mouseoptions.md) | |
|
||||
| [MouseWheelOptions](./puppeteer.mousewheeloptions.md) | |
|
||||
| [NetworkConditions](./puppeteer.networkconditions.md) | |
|
||||
@ -135,6 +137,7 @@ sidebar_label: API
|
||||
| [executablePath](./puppeteer.executablepath.md) | |
|
||||
| [KnownDevices](./puppeteer.knowndevices.md) | A list of devices to be used with [Page.emulate()](./puppeteer.page.emulate.md). |
|
||||
| [launch](./puppeteer.launch.md) | |
|
||||
| [MouseButton](./puppeteer.mousebutton.md) | Enum of valid mouse buttons. |
|
||||
| [networkConditions](./puppeteer.networkconditions.md) | |
|
||||
| [PredefinedNetworkConditions](./puppeteer.predefinednetworkconditions.md) | A list of network conditions to be used with [Page.emulateNetworkConditions()](./puppeteer.page.emulatenetworkconditions.md). |
|
||||
| [puppeteer](./puppeteer.puppeteer.md) | |
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user