Skip to content

Commit 0cb4c05

Browse files
authored
Fix typo (#408)
1 parent 19c3171 commit 0cb4c05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ class E2eTest extends PantherTestCase
163163
// Use waitForX methods to wait until some asynchronous process finish
164164
$client->waitFor('.popin'); // element is attached to the DOM
165165
$client->waitForStaleness('.popin'); // element is removed from the DOM
166-
$client->testWaitForVisibility('.loader'); // element of the DOM becomes visible
167-
$client->testWaitForInvisibility('.loader'); // element of the DOM becomes hidden
166+
$client->waitForVisibility('.loader'); // element of the DOM becomes visible
167+
$client->waitForInvisibility('.loader'); // element of the DOM becomes hidden
168168
$client->waitForElementToContain('.total', '25 €'); // text is inserted in the element content
169169
$client->waitForElementToNotContain('.promotion', '5%'); // text is removed from the element content
170170

0 commit comments

Comments
 (0)