Skip to content

Commit 7d4c84c

Browse files
author
Dmytro Bursak
committed
MTA-2319: [PS] Backend module functional tests maintenance
- Corrected global search set value
1 parent 6275af2 commit 7d4c84c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/functional/lib/Magento/Mtf/Client/Element/GlobalsearchElement.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ public function setValue($value)
6969
if (!$this->find($this->searchInput)->isVisible()) {
7070
$this->find($this->searchIcon)->click();
7171
}
72-
$this->selectWindow();
72+
// $this->selectWindow();
7373
$this->clear();
7474
$this->find($this->searchInput)->setValue($value);
75-
$this->selectWindow();
75+
// $this->selectWindow();
7676

7777
$this->waitResult();
7878
}
@@ -133,7 +133,7 @@ function () use ($browser, $selector) {
133133
if ($browser->find($selector)->isVisible()) {
134134
return true;
135135
} else {
136-
$browser->selectWindow();
136+
// $browser->selectWindow();
137137
return null;
138138
}
139139
}

0 commit comments

Comments
 (0)