File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -484,6 +484,21 @@ public function canSeeContainerColumnTitleForDifferentContainers(BackendTester $
484484 $ I ->see ('2-cols-right ' );
485485 }
486486
487+ public function canSeeCustomBackendTemplate (BackendTester $ I , PageTree $ pageTree , PageTreeV13 $ pageTreeV13 ): void
488+ {
489+ $ I ->click ('Page ' );
490+ if (GeneralUtility::makeInstance (Typo3Version::class)->getMajorVersion () < 13 ) {
491+ $ I ->waitForElement ('#typo3-pagetree-tree .nodes .node ' );
492+ $ pageTree ->openPath (['home ' , 'pageWithDifferentContainers ' ]);
493+ } else {
494+ $ pageTreeV13 ->openPath (['home ' , 'pageWithDifferentContainers ' ]);
495+ }
496+ $ I ->wait (0.2 );
497+ $ I ->switchToContentFrame ();
498+ $ I ->waitForElement ('#tx-container-example-custom-backend-template ' );
499+ $ I ->see ('custom backend template ' );
500+ }
501+
487502 /**
488503 * @param BackendTester $I
489504 * @param PageTree $pageTree
You can’t perform that action at this time.
0 commit comments