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.
2 parents 057d55c + 6f4f32c commit 4db4779Copy full SHA for 4db4779
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, $actualUrl);
+ $this->assertStringContainsString(urldecode($needle), urldecode($actualUrl));
344
}
345
346
/**
0 commit comments