Skip to content
Snippets Groups Projects
Commit c9b47d92 authored by Sascha Egerer's avatar Sascha Egerer Committed by Christian Kuhn
Browse files

[BUGFIX] Make Topbar bookmark acceptance test more stable

Change-Id: I2260589acacab49d7120b515ba27870fee79eca7
Resolves: #75791
Releases: master
Reviewed-on: https://review.typo3.org/47794


Reviewed-by: default avatarSusanne Moog <typo3@susannemoog.de>
Tested-by: default avatarSusanne Moog <typo3@susannemoog.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 036c6ba1
Branches
Tags
No related merge requests found
......@@ -66,7 +66,7 @@ class BookmarkCest
* @param ModalDialog $dialog
* @return Admin
*/
public function checkThatAddingABookmarkAddAItemToTheBookmarkList(Admin $I, ModalDialog $dialog, Scenario $scenario)
public function checkThatAddingABookmarkAddsItemToTheBookmarkList(Admin $I, ModalDialog $dialog, Scenario $scenario)
{
$I->switchToIFrame();
// open the scheduler module as we would like to put it into the bookmark liste
......@@ -87,11 +87,11 @@ class BookmarkCest
$dialog->clickButtonInDialog('OK');
$this->clickBookmarkDropdownToggleInTopbar($I);
$I->canSee('Scheduled tasks', self::$topBarModuleSelector . ' ' . Topbar::$dropdownContainerSelector);
$I->waitForText('Scheduled tasks', 15, self::$topBarModuleSelector . ' ' . Topbar::$dropdownContainerSelector);
// @test complese test when https://forge.typo3.org/issues/75689 is fixed
// @test complete test when https://forge.typo3.org/issues/75689 is fixed
$scenario->comment(
'Test for deleting the item in the list and readd it are missing ' .
'Tests for deleting the item in the list and readding it are missing ' .
'as this is currently broken in the core. See https://forge.typo3.org/issues/75689'
);
......@@ -100,7 +100,7 @@ class BookmarkCest
/**
* @param Admin $I
* @depends checkThatAddingABookmarkAddAItemToTheBookmarkList
* @depends checkThatAddingABookmarkAddsItemToTheBookmarkList
*/
public function checkIfBookmarkItemLinksToTarget(Admin $I)
{
......@@ -112,7 +112,7 @@ class BookmarkCest
/**
* @param Admin $I
* @depends checkThatAddingABookmarkAddAItemToTheBookmarkList
* @depends checkThatAddingABookmarkAddsItemToTheBookmarkList
*/
public function checkIfEditBookmarkItemWorks(Admin $I)
{
......@@ -131,7 +131,7 @@ class BookmarkCest
/**
* @param Admin $I
* @depends checkThatAddingABookmarkAddAItemToTheBookmarkList
* @depends checkThatAddingABookmarkAddsItemToTheBookmarkList
*/
public function checkIfDeleteBookmarkWorks(Admin $I, ModalDialog $dialog)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment