| 1 | <?php |
||
| 8 | class Grid extends Authenticated |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string $Xpath Chropath of current grid |
||
| 12 | */ |
||
| 13 | private $Xpath; |
||
| 14 | |||
| 15 | public function __construct(AcceptanceTester $I, string $Xpath = "//form[contains(@id, 'bulk')]") |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string[] $columnNames array of column names |
||
| 23 | * @param string|null $representation the representation name |
||
| 24 | * @throws \Codeception\Exception\ModuleException |
||
| 25 | */ |
||
| 26 | public function containsColumns(array $columnNames, $representation = null): void |
||
| 41 | } |