2 declare(strict_types = 1);
30 $I->useExistingSession(
'admin');
38 $treeArea =
'.scaffold-content-navigation-expanded';
39 $I->wantTo(
'check Page Module for Expands And Collapse');
41 $I->waitForElement($treeArea);
42 $I->see(
'New TYPO3 site', $treeArea);
43 $I->wantTo(
'check Page Module for Collapse');
44 $I->click(
'button.t3js-topbar-button-navigationcomponent');
45 $I->waitForElementNotVisible($treeArea);
46 $I->cantSee(
'New TYPO3 site', $treeArea);
47 $I->wantTo(
'check Page Module for Expands');
48 $I->click(
'button.t3js-topbar-button-navigationcomponent');
49 $I->waitForElement($treeArea);
51 $I->see(
'New TYPO3 site', $treeArea);
59 $I->wantTo(
'check File Module for Expands And Collapse');
60 $I->click(
'Filelist');
61 $I->switchToIFrame(
'nav_frame');
62 $I->waitForElement(
'.t3js-module-body');
63 $I->see(
'fileadmin',
'.t3js-module-body');
64 $I->switchToMainFrame();
65 $I->wantTo(
'check File Module for Collapse');
66 $I->click(
'button.t3js-topbar-button-navigationcomponent');
67 $I->waitForElementNotVisible(
'.scaffold-content-navigation-expanded');
68 $I->wantTo(
'check File Module for Expands');
69 $I->click(
'button.t3js-topbar-button-navigationcomponent');
70 $I->switchToIFrame(
'nav_frame');
71 $I->waitForElement(
'.t3js-module-body');
72 $I->see(
'fileadmin',
'.t3js-module-body');
73 $I->switchToMainFrame();