From 2e2a9738c14260b048f4ea54b247401c1eace14a Mon Sep 17 00:00:00 2001 From: sonali-dudhia Date: Wed, 6 May 2026 10:44:56 +0530 Subject: [PATCH 1/3] Remove example of passing options to the click method in browser-testing.md --- browser-testing.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/browser-testing.md b/browser-testing.md index 7a72a47..1b09a0e 100644 --- a/browser-testing.md +++ b/browser-testing.md @@ -917,12 +917,6 @@ The `click` method clicks the link with the given text: $page->click('Login'); ``` -You may also pass options: - -```php -$page->click('#button', options: ['clickCount' => 2]); -``` - ### text From a591e6d1bd8c2670f7e52135af0b886c14930413 Mon Sep 17 00:00:00 2001 From: sonali-dudhia Date: Wed, 6 May 2026 10:46:57 +0530 Subject: [PATCH 2/3] Revert "Remove example of passing options to the click method in browser-testing.md" This reverts commit 2e2a9738c14260b048f4ea54b247401c1eace14a. --- browser-testing.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/browser-testing.md b/browser-testing.md index 1b09a0e..7a72a47 100644 --- a/browser-testing.md +++ b/browser-testing.md @@ -917,6 +917,12 @@ The `click` method clicks the link with the given text: $page->click('Login'); ``` +You may also pass options: + +```php +$page->click('#button', options: ['clickCount' => 2]); +``` + ### text From 001e98fb35ab3afeb4f531583b5ff73ec800ae3d Mon Sep 17 00:00:00 2001 From: sonali-dudhia Date: Wed, 6 May 2026 10:49:57 +0530 Subject: [PATCH 3/3] Remove click options example from browser testing docs --- browser-testing.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/browser-testing.md b/browser-testing.md index 7a72a47..1b09a0e 100644 --- a/browser-testing.md +++ b/browser-testing.md @@ -917,12 +917,6 @@ The `click` method clicks the link with the given text: $page->click('Login'); ``` -You may also pass options: - -```php -$page->click('#button', options: ['clickCount' => 2]); -``` - ### text