Skip to content
Snippets Groups Projects
Commit 0becfe0d authored by Demian Katz's avatar Demian Katz
Browse files

More timing improvements.

parent afdf441f
Branches
Tags
No related merge requests found
......@@ -120,6 +120,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
$this->assertEquals($this->findCss($page, '#save_list option[selected]')->getHtml(), 'Test List');
$this->findCss($page, '#add_mytags')->setValue('test1 test2 "test 3"');
$this->findCss($page, '.modal-body .btn.btn-primary')->click();
$this->snooze();
$this->findCss($page, '.modal .alert.alert-info'); // .success?
$this->findCss($page, '.modal-body .btn.btn-default')->click();
// Check list page
......@@ -174,6 +175,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
'Login Test List'
);
$this->findCss($page, '.modal-body .btn.btn-primary')->click();
$this->snooze();
$this->findCss($page, '.modal .alert.alert-info'); // .success?
}
......@@ -196,6 +198,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
$this->snooze();
$this->findCss($page, '#save_list');
$this->findCss($page, '.modal-body .btn.btn-primary')->click();
$this->snooze();
$this->findCss($page, '.modal .alert.alert-info'); // .success?
}
......
......@@ -323,6 +323,7 @@ class RecordActionsTest extends \VuFindTest\Unit\MinkTestCase
$optionElement = $this->findCss($page, '.modal #sms_provider option');
$page->selectFieldOption('sms_provider', 'verizon');
$this->findCss($page, '.modal-body .btn.btn-primary')->click();
$this->snooze();
// Check for confirmation message
$this->findCss($page, '.modal .alert-info');
}
......
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