public function _before(Admin $I, PageTree $pageTree)
 {
     $I->useExistingSession();
     $I->click('List');
     $pageTree->openPath(['styleguide TCA demo', 'elements basic']);
     $I->switchToIFrame('content');
 }
 /**
  * @param Admin $I
  */
 public function _before(Admin $I)
 {
     $I->useExistingSession();
     // Ensure main content frame is fully loaded, otherwise there are load-race-conditions
     $I->switchToIFrame('content');
     $I->waitForText('Web>Page module');
 }
示例#3
0
 /**
  * @param Admin $I
  */
 public function _before(Admin $I)
 {
     $I->useExistingSession();
     $I->see('Scheduler', '#system_txschedulerM1');
     $I->click('Scheduler', '#system_txschedulerM1');
     // switch to content iframe
     $I->switchToIFrame('content');
 }
 /**
  * @param Admin $I
  */
 public function _before(Admin $I)
 {
     $I->useExistingSession();
     // clear the localstorage to fix problems in phantomJs where the search
     // sometimes is preserved over multiple sessions
     $I->executeInSelenium(function (\Facebook\WebDriver\Remote\RemoteWebDriver $webDriver) {
         $webDriver->executeScript('localStorage.clear();');
     });
     $I->click('Extensions', '#typo3-module-menu');
     $I->switchToIFrame('content');
     $I->waitForElementVisible('#typo3-extension-list');
 }
 /**
  * @param Admin $I
  */
 public function _before(Admin $I)
 {
     $I->useExistingSession();
 }