We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908c2e3 commit f5d5360Copy full SHA for f5d5360
src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php
@@ -340,7 +340,7 @@ public function seeInCurrentUrl($needle)
340
$actualUrl = $this->webDriver->getCurrentURL();
341
$comparison = "Expected: $needle\nActual: $actualUrl";
342
AllureHelper::addAttachmentToCurrentStep($comparison, 'Comparison');
343
- $this->assertStringContainsString($needle, urldecode($actualUrl));
+ $this->assertStringContainsString(urldecode($needle), urldecode($actualUrl));
344
}
345
346
/**
0 commit comments