Esempio n. 1
0
 /**
  * Login as a non-admin user, check visible modules and logout again
  *
  * @param Kasper $I
  */
 public function loginAsEditor(Kasper $I)
 {
     $I->loginAsEditor();
     // user is redirected to 'about modules' after login, but must not see the 'admin tools' section
     $I->cantSee('Admin tools', '#typo3-menu');
     $topBarItemSelector = Topbar::$containerSelector . ' ' . Topbar::$dropdownToggleSelector . ' *';
     // can see bookmarks
     $I->seeElement($topBarItemSelector, ['title' => 'Bookmarks']);
     // cant see clear cache
     $I->cantSeeElement($topBarItemSelector, ['title' => 'Clear cache']);
     $I->logout();
     $I->waitForElement('#t3-username');
 }