Skip to content

Commit

Permalink
chore(release): v0.1.3 (puppeteer#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN authored May 18, 2022
1 parent 3c7348e commit d725e8d
Show file tree
Hide file tree
Showing 21 changed files with 222 additions and 68 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.

### [0.1.3](https://github.com/puppeteer/replay/compare/v0.1.2...v0.1.3) (2022-05-18)


### Features

* add `hover` step ([#127](https://github.com/puppeteer/replay/issues/127)) ([d2ceac5](https://github.com/puppeteer/replay/commit/d2ceac5100158bb79f11a18153aa87a3c13ee1f2))
* support PUPPETEER_HEADLESS variable ([#130](https://github.com/puppeteer/replay/issues/130)) ([041d257](https://github.com/puppeteer/replay/commit/041d257030bb9afe97524e13ad131567a3659300))

### [0.1.2](https://github.com/puppeteer/replay/compare/v0.1.1...v0.1.2) (2022-04-28)


Expand Down
6 changes: 3 additions & 3 deletions docs/api/classes/PuppeteerStringifyExtension.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

#### Defined in

[PuppeteerStringifyExtension.ts:62](https://github.com/puppeteer/replay/blob/main/src/PuppeteerStringifyExtension.ts#L62)
[PuppeteerStringifyExtension.ts:59](https://github.com/puppeteer/replay/blob/main/src/PuppeteerStringifyExtension.ts#L59)

___

Expand Down Expand Up @@ -106,7 +106,7 @@ ___

#### Defined in

[PuppeteerStringifyExtension.ts:45](https://github.com/puppeteer/replay/blob/main/src/PuppeteerStringifyExtension.ts#L45)
[PuppeteerStringifyExtension.ts:46](https://github.com/puppeteer/replay/blob/main/src/PuppeteerStringifyExtension.ts#L46)

___

Expand Down Expand Up @@ -158,4 +158,4 @@ ___

#### Defined in

[PuppeteerStringifyExtension.ts:68](https://github.com/puppeteer/replay/blob/main/src/PuppeteerStringifyExtension.ts#L68)
[PuppeteerStringifyExtension.ts:69](https://github.com/puppeteer/replay/blob/main/src/PuppeteerStringifyExtension.ts#L69)
4 changes: 2 additions & 2 deletions docs/api/interfaces/Schema.ChangeStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ ___

#### Defined in

[Schema.ts:101](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L101)
[Schema.ts:113](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L113)

___

Expand All @@ -129,4 +129,4 @@ ___

#### Defined in

[Schema.ts:102](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L102)
[Schema.ts:114](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L114)
12 changes: 6 additions & 6 deletions docs/api/interfaces/Schema.ClickAttributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@

### button

`Optional` **button**: ``"primary"`` \| ``"auxiliary"`` \| ``"secondary"`` \| ``"back"`` \| ``"forward"``
`Optional` **button**: [`PointerButtonType`](../modules/Schema.md#pointerbuttontype)

Defaults to 'primary' if the device type is a mouse.

#### Defined in

[Schema.ts:74](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L74)
[Schema.ts:82](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L82)

___

### deviceType

`Optional` **deviceType**: ``"mouse"`` \| ``"pen"`` \| ``"touch"``
`Optional` **deviceType**: [`PointerDeviceType`](../modules/Schema.md#pointerdevicetype)

Pointer type for the event. Defaults to 'mouse'.

#### Defined in

[Schema.ts:70](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L70)
[Schema.ts:78](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L78)

___

Expand All @@ -56,7 +56,7 @@ to the center of the element

#### Defined in

[Schema.ts:79](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L79)
[Schema.ts:87](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L87)

___

Expand All @@ -69,4 +69,4 @@ to the center of the element

#### Defined in

[Schema.ts:84](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L84)
[Schema.ts:92](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L92)
16 changes: 8 additions & 8 deletions docs/api/interfaces/Schema.ClickStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ___

### button

`Optional` **button**: ``"primary"`` \| ``"auxiliary"`` \| ``"secondary"`` \| ``"back"`` \| ``"forward"``
`Optional` **button**: [`PointerButtonType`](../modules/Schema.md#pointerbuttontype)

Defaults to 'primary' if the device type is a mouse.

Expand All @@ -56,13 +56,13 @@ Defaults to 'primary' if the device type is a mouse.

#### Defined in

[Schema.ts:74](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L74)
[Schema.ts:82](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L82)

___

### deviceType

`Optional` **deviceType**: ``"mouse"`` \| ``"pen"`` \| ``"touch"``
`Optional` **deviceType**: [`PointerDeviceType`](../modules/Schema.md#pointerdevicetype)

Pointer type for the event. Defaults to 'mouse'.

Expand All @@ -72,7 +72,7 @@ Pointer type for the event. Defaults to 'mouse'.

#### Defined in

[Schema.ts:70](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L70)
[Schema.ts:78](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L78)

___

Expand All @@ -85,7 +85,7 @@ Delay (in ms) between the mouse up and mouse down of the click. Defaults to

#### Defined in

[Schema.ts:97](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L97)
[Schema.ts:105](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L105)

___

Expand Down Expand Up @@ -118,7 +118,7 @@ to the center of the element

#### Defined in

[Schema.ts:79](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L79)
[Schema.ts:87](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L87)

___

Expand All @@ -135,7 +135,7 @@ to the center of the element

#### Defined in

[Schema.ts:84](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L84)
[Schema.ts:92](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L92)

___

Expand Down Expand Up @@ -204,4 +204,4 @@ ___

#### Defined in

[Schema.ts:92](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L92)
[Schema.ts:100](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L100)
2 changes: 1 addition & 1 deletion docs/api/interfaces/Schema.CloseStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ ___

#### Defined in

[Schema.ts:123](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L123)
[Schema.ts:135](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L135)
6 changes: 3 additions & 3 deletions docs/api/interfaces/Schema.CustomStepParams.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#### Defined in

[Schema.ts:159](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L159)
[Schema.ts:171](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L171)

___

Expand All @@ -30,7 +30,7 @@ ___

#### Defined in

[Schema.ts:160](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L160)
[Schema.ts:172](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L172)

___

Expand All @@ -40,4 +40,4 @@ ___

#### Defined in

[Schema.ts:158](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L158)
[Schema.ts:170](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L170)
14 changes: 7 additions & 7 deletions docs/api/interfaces/Schema.DoubleClickStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ___

### button

`Optional` **button**: ``"primary"`` \| ``"auxiliary"`` \| ``"secondary"`` \| ``"back"`` \| ``"forward"``
`Optional` **button**: [`PointerButtonType`](../modules/Schema.md#pointerbuttontype)

Defaults to 'primary' if the device type is a mouse.

Expand All @@ -55,13 +55,13 @@ Defaults to 'primary' if the device type is a mouse.

#### Defined in

[Schema.ts:74](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L74)
[Schema.ts:82](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L82)

___

### deviceType

`Optional` **deviceType**: ``"mouse"`` \| ``"pen"`` \| ``"touch"``
`Optional` **deviceType**: [`PointerDeviceType`](../modules/Schema.md#pointerdevicetype)

Pointer type for the event. Defaults to 'mouse'.

Expand All @@ -71,7 +71,7 @@ Pointer type for the event. Defaults to 'mouse'.

#### Defined in

[Schema.ts:70](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L70)
[Schema.ts:78](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L78)

___

Expand Down Expand Up @@ -104,7 +104,7 @@ to the center of the element

#### Defined in

[Schema.ts:79](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L79)
[Schema.ts:87](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L87)

___

Expand All @@ -121,7 +121,7 @@ to the center of the element

#### Defined in

[Schema.ts:84](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L84)
[Schema.ts:92](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L92)

___

Expand Down Expand Up @@ -190,4 +190,4 @@ ___

#### Defined in

[Schema.ts:88](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L88)
[Schema.ts:96](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L96)
8 changes: 4 additions & 4 deletions docs/api/interfaces/Schema.EmulateNetworkConditionsStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ___

#### Defined in

[Schema.ts:107](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L107)
[Schema.ts:119](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L119)

___

Expand All @@ -54,7 +54,7 @@ ___

#### Defined in

[Schema.ts:109](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L109)
[Schema.ts:121](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L121)

___

Expand Down Expand Up @@ -98,7 +98,7 @@ ___

#### Defined in

[Schema.ts:106](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L106)
[Schema.ts:118](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L118)

___

Expand All @@ -108,4 +108,4 @@ ___

#### Defined in

[Schema.ts:108](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L108)
[Schema.ts:120](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L120)
Loading

0 comments on commit d725e8d

Please sign in to comment.