Skip to content

Commit bf9892c

Browse files
committed
MQE-632: Add support to check full url of the page seeFullUrlEquals
1 parent e2330e4 commit bf9892c

File tree

6 files changed

+28
-136
lines changed

6 files changed

+28
-136
lines changed

dev/tests/verification/Resources/BasicFunctionalTest.txt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,5 @@ class BasicFunctionalTestCest
125125
$I->waitForElementVisible(".functionalTestSelector", 30);
126126
$I->waitForJS("someJsFunction", 30);
127127
$I->waitForText("someInput", 30, ".functionalTestSelector");
128-
$I->dontSeeFullUrlEquals("www.magento.com");
129-
$I->dontSeeFullUrlMatches("/[0-9]+/");
130-
$I->dontSeeInFullUrl("https://www.magento.com");
131-
$grabFromFullUrl1 = $I->grabFromFullUrl("/[0-9]+/");
132-
$grabFromFullUrl2 = $I->grabFromFullUrl();
133-
$I->seeFullUrlEquals("http://magento.com/something");
134-
$I->seeFullUrlMatches("/[0-9]+/");
135-
$I->seeInFullUrl("magento");
136128
}
137129
}

dev/tests/verification/TestModule/Test/BasicFunctionalTest.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,5 @@
105105
<waitForElementVisible selector=".functionalTestSelector" time="30" stepKey="waitForElementVisibleKey1" />
106106
<waitForJS function="someJsFunction" time="30" stepKey="waitForJSKey1" />
107107
<waitForText selector=".functionalTestSelector" userInput="someInput" time="30" stepKey=""/>
108-
<dontSeeFullUrlEquals url="www.magento.com" stepKey="dontSeeFullUrlEquals1"/>
109-
<dontSeeFullUrlMatches regex="/[0-9]+/" stepKey="dontSeeFullUrlMatches1"/>
110-
<dontSeeInFullUrl url="https://www.magento.com" stepKey="dontSeeInFullUrl1"/>
111-
<grabFromFullUrl regex="/[0-9]+/" stepKey="grabFromFullUrl1"/>
112-
<grabFromFullUrl stepKey="grabFromFullUrl2"/>
113-
<seeFullUrlEquals url="http://magento.com/something" stepKey="seeFullUrlEquals1"/>
114-
<seeFullUrlMatches regex="/[0-9]+/" stepKey="seeFullUrlMatches1"/>
115-
<seeInFullUrl url="magento" stepKey="seeInFullUrl1"/>
116108
</test>
117109
</tests>

0 commit comments

Comments
 (0)