mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Share expectedToastMessage variable between tests, and comment about Firefox version changes message.
This commit is contained in:
parent
034c0a0096
commit
5073aa520c
1 changed files with 4 additions and 4 deletions
|
@ -12,6 +12,8 @@ define(function (require) {
|
|||
var settingsPage;
|
||||
var discoverPage;
|
||||
var baseUrl;
|
||||
// var expectedToastMessage = 'Share search: URL selected. Press Ctrl+C to copy.'; pre-Firefox 41
|
||||
var expectedToastMessage = 'Share search: URL copied to clipboard.';
|
||||
|
||||
bdd.before(function () {
|
||||
common = new Common(this.remote);
|
||||
|
@ -89,13 +91,12 @@ define(function (require) {
|
|||
});
|
||||
|
||||
bdd.it('should show toast message for copy to clipboard', function () {
|
||||
var expectedMsg = 'Share search: URL copied to clipboard.';
|
||||
return discoverPage.clickCopyToClipboard()
|
||||
.then(function () {
|
||||
return headerPage.getToastMessage();
|
||||
})
|
||||
.then(function (toastMessage) {
|
||||
expect(toastMessage).to.be(expectedMsg);
|
||||
expect(toastMessage).to.be(expectedToastMessage);
|
||||
})
|
||||
.then(function () {
|
||||
return headerPage.waitForToastMessageGone();
|
||||
|
@ -122,13 +123,12 @@ define(function (require) {
|
|||
// NOTE: This test has to run immediately after the test above
|
||||
// 'shorten URL button should produce a short URL'
|
||||
bdd.it('should show toast message for copy to clipboard', function () {
|
||||
var expectedMsg = 'Share search: URL copied to clipboard.';
|
||||
return discoverPage.clickCopyToClipboard()
|
||||
.then(function () {
|
||||
return headerPage.getToastMessage();
|
||||
})
|
||||
.then(function (toastMessage) {
|
||||
expect(toastMessage).to.be(expectedMsg);
|
||||
expect(toastMessage).to.be(expectedToastMessage);
|
||||
})
|
||||
.then(function () {
|
||||
return headerPage.waitForToastMessageGone();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue