2 declare(strict_types = 1);
31 $I->useExistingSession(
'admin');
33 $I->click(
'Redirects');
34 $I->switchToContentFrame();
35 $I->canSee(
'Redirect Management',
'h1');
43 $I->amGoingTo(
'create a new redirects record while none are in the system, yet');
44 $I->canSee(
'No redirects found!');
45 $I->click(
'Create new redirect');
46 $I->waitForElementNotVisible(
'#t3js-ui-block');
47 $I->canSee(
'Create new Redirect on root level');
49 $I->fillField(
'//input[contains(@data-formengine-input-name, "data[sys_redirect]") and contains(@data-formengine-input-name, "[source_path]")]',
'/my-path/');
50 $I->fillField(
'//input[contains(@data-formengine-input-name, "data[sys_redirect]") and contains(@data-formengine-input-name, "[target]")]', 1);
52 $saveButtonLink =
'//*/button[@name="_savedok"][1]';
53 $I->waitForElement($saveButtonLink, 30);
54 $I->click($saveButtonLink);
55 $I->waitForElementNotVisible(
'#t3js-ui-block');
57 $I->click(
'div.module-docheader .btn.t3js-editform-close');
59 $I->waitForElementVisible(
'table.table-striped');
60 $I->canSee(
'Redirect Management',
'h1');
61 $I->canSeeNumberOfElements(
'table.table-striped > tbody > tr', 1);
69 $sourceHost = $I->grabTextFrom(
'table.table-striped > tbody > tr > td:nth-child(1)');
70 $sourcePath = $I->grabTextFrom(
'table.table-striped > tbody > tr > td:nth-child(2) > a');
72 $I->amGoingTo(
'test edit on source path');
73 $I->click(
'table.table-striped > tbody > tr > td:nth-child(2) > a');
76 $I->amGoingTo(
'test edit on edit button');
77 $I->click(
'table.table-striped > tbody > tr > td:nth-child(6) > div > a:nth-child(2)');
87 $I->waitForElementNotVisible(
'#t3js-ui-block');
88 $I->canSee(
'Edit Redirect "' . $name .
'" on root level');
90 $I->click(
'div.module-docheader .btn.t3js-editform-close');
91 $I->waitForElementVisible(
'table.table-striped');
92 $I->canSee(
'Redirect Management',
'h1');