Skip to content

Commit

Permalink
chore: roll 1.45.3 (#1632)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Jul 22, 2024
1 parent 507e2c2 commit 7231dab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions playwright/src/main/java/com/microsoft/playwright/Clock.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ default void install() {
* page.clock().pauseAt("2020-02-02");
* }</pre>
*
* @param time Time to pause at.
* @since v1.45
*/
void pauseAt(long time);
Expand All @@ -193,6 +194,7 @@ default void install() {
* page.clock().pauseAt("2020-02-02");
* }</pre>
*
* @param time Time to pause at.
* @since v1.45
*/
void pauseAt(String time);
Expand All @@ -212,6 +214,7 @@ default void install() {
* page.clock().pauseAt("2020-02-02");
* }</pre>
*
* @param time Time to pause at.
* @since v1.45
*/
void pauseAt(Date time);
Expand All @@ -231,7 +234,7 @@ default void install() {
* page.clock().setFixedTime("2020-02-02");
* }</pre>
*
* @param time Time to be set.
* @param time Time to be set in milliseconds.
* @since v1.45
*/
void setFixedTime(long time);
Expand All @@ -245,7 +248,7 @@ default void install() {
* page.clock().setFixedTime("2020-02-02");
* }</pre>
*
* @param time Time to be set.
* @param time Time to be set in milliseconds.
* @since v1.45
*/
void setFixedTime(String time);
Expand All @@ -259,7 +262,7 @@ default void install() {
* page.clock().setFixedTime("2020-02-02");
* }</pre>
*
* @param time Time to be set.
* @param time Time to be set in milliseconds.
* @since v1.45
*/
void setFixedTime(Date time);
Expand All @@ -273,6 +276,7 @@ default void install() {
* page.clock().setSystemTime("2020-02-02");
* }</pre>
*
* @param time Time to be set in milliseconds.
* @since v1.45
*/
void setSystemTime(long time);
Expand All @@ -286,6 +290,7 @@ default void install() {
* page.clock().setSystemTime("2020-02-02");
* }</pre>
*
* @param time Time to be set in milliseconds.
* @since v1.45
*/
void setSystemTime(String time);
Expand All @@ -299,6 +304,7 @@ default void install() {
* page.clock().setSystemTime("2020-02-02");
* }</pre>
*
* @param time Time to be set in milliseconds.
* @since v1.45
*/
void setSystemTime(Date time);
Expand Down
2 changes: 1 addition & 1 deletion scripts/DRIVER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.45.0-beta-1719505820000
1.45.3

0 comments on commit 7231dab

Please sign in to comment.