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 a8d7cad commit 4404f38Copy full SHA for 4404f38
src/JoomlaBrowser.php
@@ -425,4 +425,18 @@ public function checkExistenceOf($name)
425
$I->seeElement(['xpath' => "//form[@id='adminForm']/div/table/tbody"]);
426
$I->see($name,['xpath' => "//form[@id='adminForm']/div/table/tbody"]);
427
}
428
+
429
+ /**
430
+ * Function to select all the item in the Search results in Administrator List
431
+ *
432
+ * Note: We recommend use of checkAllResults function only after searchForItem to be sure you are selecting only the desired result set
433
434
+ * @return void
435
+ */
436
+ public function checkAllResults()
437
+ {
438
+ $I = $this;
439
+ $this->debug("Selecting Checkall button");
440
+ $I->click(['xpath' => "//thead//input[@name='checkall-toggle' or @name='toggle']"]);
441
+ }
442
0 commit comments