WebdriverIO - How to check for browser notification





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I am using WebdriverIO in the WebStorm IDE and I am testing a web application that requires Adobe Flash Player to be enabled in order to continue. I am trying to verify that a browser's notification displays (see below image). I am not looking to click/select "allow" or "block", I am only testing to see if the notification displays in the browser.



How could I accomplish this? I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari.



Browser notification example



I also understand that there are methods such as getAlertText, acceptAlert, and dismissAlert, however none of these methods are recognized or executed in my IDE.



Should these methods work? How could I get these methods to work?



If any more information is needed, I'll be happy to comply.










share|improve this question

























  • Hey Brian! So let me get this straight: You are "only testing to see if the notification displays in the browser. I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari." I'll just spare your the trouble and say first hand this is close to impossible. You could make it work on some browsers, but there hardly could be a homogenous solution (constant across all browsers) imhho. SO, that's a hard NO!.

    – iamdanchiv
    Jan 5 at 6:07













  • First off, you want to check notifications, not alert boxes, so of course those methods you just mentioned won't work. Secondly, as some pointers I can off the top of my head think of 2-3 ways it could be done, but you have to put in the work & research. 1. Try using a Visual Regression tool and check if that notification appeared in your predefined section; 2. Get a NodeJS intercept library & see if you can validate that notification; I'll update if I find an easy way to do it. But right now I cannot think of anything other than disabling the notifications altogether.

    – iamdanchiv
    Jan 5 at 6:15


















0















I am using WebdriverIO in the WebStorm IDE and I am testing a web application that requires Adobe Flash Player to be enabled in order to continue. I am trying to verify that a browser's notification displays (see below image). I am not looking to click/select "allow" or "block", I am only testing to see if the notification displays in the browser.



How could I accomplish this? I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari.



Browser notification example



I also understand that there are methods such as getAlertText, acceptAlert, and dismissAlert, however none of these methods are recognized or executed in my IDE.



Should these methods work? How could I get these methods to work?



If any more information is needed, I'll be happy to comply.










share|improve this question

























  • Hey Brian! So let me get this straight: You are "only testing to see if the notification displays in the browser. I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari." I'll just spare your the trouble and say first hand this is close to impossible. You could make it work on some browsers, but there hardly could be a homogenous solution (constant across all browsers) imhho. SO, that's a hard NO!.

    – iamdanchiv
    Jan 5 at 6:07













  • First off, you want to check notifications, not alert boxes, so of course those methods you just mentioned won't work. Secondly, as some pointers I can off the top of my head think of 2-3 ways it could be done, but you have to put in the work & research. 1. Try using a Visual Regression tool and check if that notification appeared in your predefined section; 2. Get a NodeJS intercept library & see if you can validate that notification; I'll update if I find an easy way to do it. But right now I cannot think of anything other than disabling the notifications altogether.

    – iamdanchiv
    Jan 5 at 6:15














0












0








0








I am using WebdriverIO in the WebStorm IDE and I am testing a web application that requires Adobe Flash Player to be enabled in order to continue. I am trying to verify that a browser's notification displays (see below image). I am not looking to click/select "allow" or "block", I am only testing to see if the notification displays in the browser.



How could I accomplish this? I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari.



Browser notification example



I also understand that there are methods such as getAlertText, acceptAlert, and dismissAlert, however none of these methods are recognized or executed in my IDE.



Should these methods work? How could I get these methods to work?



If any more information is needed, I'll be happy to comply.










share|improve this question
















I am using WebdriverIO in the WebStorm IDE and I am testing a web application that requires Adobe Flash Player to be enabled in order to continue. I am trying to verify that a browser's notification displays (see below image). I am not looking to click/select "allow" or "block", I am only testing to see if the notification displays in the browser.



How could I accomplish this? I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari.



Browser notification example



I also understand that there are methods such as getAlertText, acceptAlert, and dismissAlert, however none of these methods are recognized or executed in my IDE.



Should these methods work? How could I get these methods to work?



If any more information is needed, I'll be happy to comply.







javascript push-notification webstorm alert webdriver-io






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 4 at 20:26









LazyOne

111k21247270




111k21247270










asked Jan 4 at 18:19









BrianBrian

196




196













  • Hey Brian! So let me get this straight: You are "only testing to see if the notification displays in the browser. I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari." I'll just spare your the trouble and say first hand this is close to impossible. You could make it work on some browsers, but there hardly could be a homogenous solution (constant across all browsers) imhho. SO, that's a hard NO!.

    – iamdanchiv
    Jan 5 at 6:07













  • First off, you want to check notifications, not alert boxes, so of course those methods you just mentioned won't work. Secondly, as some pointers I can off the top of my head think of 2-3 ways it could be done, but you have to put in the work & research. 1. Try using a Visual Regression tool and check if that notification appeared in your predefined section; 2. Get a NodeJS intercept library & see if you can validate that notification; I'll update if I find an easy way to do it. But right now I cannot think of anything other than disabling the notifications altogether.

    – iamdanchiv
    Jan 5 at 6:15



















  • Hey Brian! So let me get this straight: You are "only testing to see if the notification displays in the browser. I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari." I'll just spare your the trouble and say first hand this is close to impossible. You could make it work on some browsers, but there hardly could be a homogenous solution (constant across all browsers) imhho. SO, that's a hard NO!.

    – iamdanchiv
    Jan 5 at 6:07













  • First off, you want to check notifications, not alert boxes, so of course those methods you just mentioned won't work. Secondly, as some pointers I can off the top of my head think of 2-3 ways it could be done, but you have to put in the work & research. 1. Try using a Visual Regression tool and check if that notification appeared in your predefined section; 2. Get a NodeJS intercept library & see if you can validate that notification; I'll update if I find an easy way to do it. But right now I cannot think of anything other than disabling the notifications altogether.

    – iamdanchiv
    Jan 5 at 6:15

















Hey Brian! So let me get this straight: You are "only testing to see if the notification displays in the browser. I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari." I'll just spare your the trouble and say first hand this is close to impossible. You could make it work on some browsers, but there hardly could be a homogenous solution (constant across all browsers) imhho. SO, that's a hard NO!.

– iamdanchiv
Jan 5 at 6:07







Hey Brian! So let me get this straight: You are "only testing to see if the notification displays in the browser. I would be testing a variety of different browsers including Chrome, Firefox, Internet Explorer, Microsoft Edge, and Safari." I'll just spare your the trouble and say first hand this is close to impossible. You could make it work on some browsers, but there hardly could be a homogenous solution (constant across all browsers) imhho. SO, that's a hard NO!.

– iamdanchiv
Jan 5 at 6:07















First off, you want to check notifications, not alert boxes, so of course those methods you just mentioned won't work. Secondly, as some pointers I can off the top of my head think of 2-3 ways it could be done, but you have to put in the work & research. 1. Try using a Visual Regression tool and check if that notification appeared in your predefined section; 2. Get a NodeJS intercept library & see if you can validate that notification; I'll update if I find an easy way to do it. But right now I cannot think of anything other than disabling the notifications altogether.

– iamdanchiv
Jan 5 at 6:15





First off, you want to check notifications, not alert boxes, so of course those methods you just mentioned won't work. Secondly, as some pointers I can off the top of my head think of 2-3 ways it could be done, but you have to put in the work & research. 1. Try using a Visual Regression tool and check if that notification appeared in your predefined section; 2. Get a NodeJS intercept library & see if you can validate that notification; I'll update if I find an easy way to do it. But right now I cannot think of anything other than disabling the notifications altogether.

– iamdanchiv
Jan 5 at 6:15












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54044160%2fwebdriverio-how-to-check-for-browser-notification%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54044160%2fwebdriverio-how-to-check-for-browser-notification%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Mossoró

Error while reading .h5 file using the rhdf5 package in R

Pushsharp Apns notification error: 'InvalidToken'