Skip to content

Commit ce6543d

Browse files
committed
MQE-1157: Add readiness bypass to test actions
- Removed testing statements and unused code
1 parent d455743 commit ce6543d

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/Magento/FunctionalTestingFramework/Extension/PageReadinessExtension.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ public function getTestName()
244244
private function shouldSkipCheck($step, $manualSkip)
245245
{
246246
if ($step instanceof Step\Comment || in_array($step->getAction(), $this->ignoredActions) || $manualSkip) {
247-
print("here");
248247
return true;
249248
}
250249
return false;

src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,5 @@ public function amOnPage($page)
680680
public function skipReadinessCheck($check)
681681
{
682682
$this->config['skipReadiness'] = $check;
683-
print("test");
684683
}
685684
}

src/Magento/FunctionalTestingFramework/Test/Objects/ActionObject.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ class ActionObject
6262
const FUNCTION_CLOSURE_ACTIONS = ['waitForElementChange', 'performOn'];
6363
const MERGE_ACTION_ORDER_AFTER = 'after';
6464
const MERGE_ACTION_ORDER_BEFORE = 'before';
65-
const SKIP_READINESS_FLAG = 'skipReadiness';
6665
const ACTION_ATTRIBUTE_URL = 'url';
6766
const ACTION_ATTRIBUTE_SELECTOR = 'selector';
6867
const ACTION_ATTRIBUTE_VARIABLE_REGEX_PARAMETER = '/\(.+\)/';

0 commit comments

Comments
 (0)