File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
src/Magento/FunctionalTestingFramework Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 8
8
9
9
<!-- Entity value gets replaced in Dom.php before reading $xml -->
10
10
<!DOCTYPE config [
11
- <!ENTITY commonTestActions "acceptPopup|actionGroup|amOnPage|amOnUrl|amOnSubdomain|appendField|assertArrayIsSorted|assertArraySubset|assertElementContainsAttribute|attachFile|cancelPopup|checkOption|clearField|click|clickWithLeftButton|clickWithRightButton|closeAdminNotification|closeTab|comment|conditionalClick|createData|deleteData|updateData|getData|dontSee|dontSeeJsError|dontSeeCheckboxIsChecked|dontSeeCookie|dontSeeCurrentUrlEquals|dontSeeCurrentUrlMatches|dontSeeElement|dontSeeElementInDOM|dontSeeInCurrentUrl|dontSeeInField|dontSeeInFormFields|dontSeeInPageSource|dontSeeInSource|dontSeeInTitle|dontSeeLink|dontSeeOptionIsSelected|doubleClick|dragAndDrop|entity|executeJS|executeInSelenium|fillField|formatMoney|generateDate|grabAttributeFrom|grabCookie|grabFromCurrentUrl|grabMultiple|grabPageSource|grabTextFrom|grabValueFrom|loadSessionSnapshot|loginAsAdmin|magentoCLI|makeScreenshot|maximizeWindow|moveBack|moveForward|moveMouseOver|mSetLocale|mResetLocale|openNewTab|pauseExecution|parseFloat|performOn|pressKey|reloadPage|resetCookie|submitForm|resizeWindow|saveSessionSnapshot|scrollTo|scrollToTopOfPage|searchAndMultiSelectOption|see|seeCheckboxIsChecked|seeCookie|seeCurrentUrlEquals|seeCurrentUrlMatches|seeElement|seeElementInDOM|seeInCurrentUrl|seeInField|seeInFormFields|seeInPageSource|seeInPopup|seeInSource|seeInTitle|seeLink|seeNumberOfElements|seeOptionIsSelected|selectOption|setCookie|submitForm|switchToIFrame|switchToNextTab|switchToPreviousTab|switchToWindow|typeInPopup|uncheckOption|unselectOption|wait|waitForAjaxLoad|waitForElement|waitForElementChange|waitForElementNotVisible|waitForElementVisible|waitForJsElementNotVisible|waitForJsElementVisible|waitForJS|waitForLoadingMaskToDisappear|waitForPageLoad|waitForText|assertArrayHasKey|assertArrayNotHasKey|assertArraySubset|assertContains|assertCount|assertEmpty|assertEquals|assertFalse|assertFileExists|assertFileNotExists|assertGreaterOrEquals|assertGreaterThan|assertGreaterThanOrEqual|assertInstanceOf|assertInternalType|assertIsEmpty|assertLessOrEquals|assertLessThan|assertLessThanOrEqual|assertNotContains|assertNotEmpty|assertNotEquals|assertNotInstanceOf|assertNotNull|assertNotRegExp|assertNotSame|assertNull|assertRegExp|assertSame|assertStringStartsNotWith|assertStringStartsWith|assertTrue|expectException|fail|dontSeeFullUrlEquals|dontSee|dontSeeFullUrlMatches|dontSeeInFullUrl|seeFullUrlEquals|seeFullUrlMatches|seeInFullUrl|grabFromFullUrl">
11
+ <!ENTITY commonTestActions "acceptPopup|actionGroup|amOnPage|amOnUrl|amOnSubdomain|appendField|assertArrayIsSorted|assertArraySubset|assertElementContainsAttribute|attachFile|cancelPopup|checkOption|clearField|click|clickWithLeftButton|clickWithRightButton|closeAdminNotification|closeTab|comment|conditionalClick|createData|deleteData|updateData|getData|dontSee|dontSeeJsError|dontSeeCheckboxIsChecked|dontSeeCookie|dontSeeCurrentUrlEquals|dontSeeCurrentUrlMatches|dontSeeElement|dontSeeElementInDOM|dontSeeInCurrentUrl|dontSeeInField|dontSeeInFormFields|dontSeeInPageSource|dontSeeInSource|dontSeeInTitle|dontSeeLink|dontSeeOptionIsSelected|doubleClick|dragAndDrop|entity|executeJS|executeInSelenium|fillField|formatMoney|generateDate|grabAttributeFrom|grabCookie|grabFromCurrentUrl|grabMultiple|grabPageSource|grabTextFrom|grabValueFrom|loadSessionSnapshot|loginAsAdmin|magentoCLI|makeScreenshot|maximizeWindow|moveBack|moveForward|moveMouseOver|mSetLocale|mResetLocale|openNewTab|pauseExecution|parseFloat|performOn|pressKey|reloadPage|resetCookie|submitForm|resizeWindow|saveSessionSnapshot|scrollTo|scrollToTopOfPage|searchAndMultiSelectOption|see|seeCheckboxIsChecked|seeCookie|seeCurrentUrlEquals|seeCurrentUrlMatches|seeElement|seeElementInDOM|seeInCurrentUrl|seeInField|seeInFormFields|seeInPageSource|seeInPopup|seeInSource|seeInTitle|seeLink|seeNumberOfElements|seeOptionIsSelected|selectOption|setCookie|submitForm|switchToIFrame|switchToNextTab|switchToPreviousTab|switchToWindow|typeInPopup|uncheckOption|unselectOption|wait|waitForAjaxLoad|waitForElement|waitForElementChange|waitForElementNotVisible|waitForElementVisible|waitForPwaElementNotVisible|waitForPwaElementVisible|waitForJS|waitForLoadingMaskToDisappear|waitForPageLoad|waitForText|assertArrayHasKey|assertArrayNotHasKey|assertArraySubset|assertContains|assertCount|assertEmpty|assertEquals|assertFalse|assertFileExists|assertFileNotExists|assertGreaterOrEquals|assertGreaterThan|assertGreaterThanOrEqual|assertInstanceOf|assertInternalType|assertIsEmpty|assertLessOrEquals|assertLessThan|assertLessThanOrEqual|assertNotContains|assertNotEmpty|assertNotEquals|assertNotInstanceOf|assertNotNull|assertNotRegExp|assertNotSame|assertNull|assertRegExp|assertSame|assertStringStartsNotWith|assertStringStartsWith|assertTrue|expectException|fail|dontSeeFullUrlEquals|dontSee|dontSeeFullUrlMatches|dontSeeInFullUrl|seeFullUrlEquals|seeFullUrlMatches|seeInFullUrl|grabFromFullUrl">
12
12
]>
13
13
14
14
<config xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" ../src/Magento/FunctionalTestingFramework/ObjectManager/etc/config.xsd" >
Original file line number Diff line number Diff line change @@ -380,14 +380,14 @@ public function waitForPageLoad($timeout = null)
380
380
}
381
381
382
382
/**
383
- * Wait for an Element to NOT be visible using JavaScript.
383
+ * Wait for a PWA Element to NOT be visible using JavaScript.
384
384
*
385
385
* @param null $selector
386
386
* @param null $timeout
387
387
* @throws \Exception
388
388
* @return void
389
389
*/
390
- public function waitForJsElementNotVisible ($ selector , $ timeout = null )
390
+ public function waitForPwaElementNotVisible ($ selector , $ timeout = null )
391
391
{
392
392
$ timeout = $ timeout ?? $ this ->_getConfig ()['pageload_timeout ' ];
393
393
@@ -401,14 +401,14 @@ public function waitForJsElementNotVisible($selector, $timeout = null)
401
401
}
402
402
403
403
/**
404
- * Wait for an Element to be visible using JavaScript.
404
+ * Wait for a PWA Element to be visible using JavaScript.
405
405
*
406
406
* @param null $selector
407
407
* @param null $timeout
408
408
* @throws \Exception
409
409
* @return void
410
410
*/
411
- public function waitForJsElementVisible ($ selector , $ timeout = null )
411
+ public function waitForPwaElementVisible ($ selector , $ timeout = null )
412
412
{
413
413
$ timeout = $ timeout ?? $ this ->_getConfig ()['pageload_timeout ' ];
414
414
Original file line number Diff line number Diff line change 20
20
<xs : element type =" waitForJSType" name =" waitForJS" minOccurs =" 0" maxOccurs =" unbounded" />
21
21
<xs : element type =" waitForLoadingMaskToDisappearType" name =" waitForLoadingMaskToDisappear" minOccurs =" 0" maxOccurs =" unbounded" />
22
22
<xs : element type =" waitForPageLoadType" name =" waitForPageLoad" minOccurs =" 0" maxOccurs =" unbounded" />
23
- <xs : element type =" waitForJsElementNotVisibleType " name =" waitForJsElementNotVisible " minOccurs =" 0" maxOccurs =" unbounded" />
24
- <xs : element type =" waitForJsElementVisibleType " name =" waitForJsElementVisible " minOccurs =" 0" maxOccurs =" unbounded" />
23
+ <xs : element type =" waitForPwaElementNotVisibleType " name =" waitForPwaElementNotVisible " minOccurs =" 0" maxOccurs =" unbounded" />
24
+ <xs : element type =" waitForPwaElementVisibleType " name =" waitForPwaElementVisible " minOccurs =" 0" maxOccurs =" unbounded" />
25
25
<xs : element type =" waitForTextType" name =" waitForText" minOccurs =" 0" maxOccurs =" unbounded" />
26
26
</xs : choice >
27
27
</xs : group >
178
178
</xs : simpleContent >
179
179
</xs : complexType >
180
180
181
- <xs : complexType name =" waitForJsElementNotVisibleType " >
181
+ <xs : complexType name =" waitForPwaElementNotVisibleType " >
182
182
<xs : annotation >
183
183
<xs : documentation >
184
- Waits up to given time for a React Element to disappear from the screen using JavaScript.
184
+ Waits up to given time for a PWA Element to disappear from the screen using JavaScript.
185
185
</xs : documentation >
186
186
</xs : annotation >
187
187
<xs : simpleContent >
193
193
</xs : simpleContent >
194
194
</xs : complexType >
195
195
196
- <xs : complexType name =" waitForJsElementVisibleType " >
196
+ <xs : complexType name =" waitForPwaElementVisibleType " >
197
197
<xs : annotation >
198
198
<xs : documentation >
199
- Waits up to given time for a React Element to appear on the screen using JavaScript.
199
+ Waits up to given time for a PWA Element to appear on the screen using JavaScript.
200
200
</xs : documentation >
201
201
</xs : annotation >
202
202
<xs : simpleContent >
You can’t perform that action at this time.
0 commit comments