/**
  * @param Admin $I
  */
 public function selectingAModuleDoesHighlightIt(Admin $I)
 {
     $I->seeNumberOfElements('#web .typo3-module-menu-item-link', [2, 20]);
     $I->wantTo('check that the second element has no "active" class\'');
     $I->cantSeeElement('#web #web_list.active');
     $I->click('#web #web_list .typo3-module-menu-item-link');
     $I->wantTo('see that the second element has an "active" class');
     $I->canSeeElement('#web #web_list.active');
 }