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 c02a07f commit 9753727Copy full SHA for 9753727
tests/system/webdriver/Pages/System/AdminManagerPage.php
@@ -202,6 +202,18 @@ public function searchFor($search = false)
202
203
public function setFilter($idOrLabel, $value)
204
{
205
+ $el = $this->driver->findElements(By::xPath("//button"));
206
+ foreach($el as $element)
207
+ {
208
+ if ($element->getAttribute('data-original-title') == 'Filter the list items.')
209
210
+ $element->click();
211
+ if($value == 'Select Status')
212
213
214
+ }
215
216
217
$filters = array_change_key_case($this->filters, CASE_LOWER);
218
$idOrLabel = strtolower($idOrLabel);
219
$filterId = '';
0 commit comments