I am Automating some test cases using Selenium Webdriver and core Java,in chrome browser for one test case on clicking button I am getting browser level notification \'Show
Steps to handle this type of requirements:
firefox.exe -p to launch profile manager)customfirefox)about:permissions Now use the newly created Profile to run your test by invoking the Firefox
ProfilesIni ffProfiles = new ProfilesIni();
FirefoxProfile profile = ffProfiles.getProfile("customfirefox");
WebDriver driver = new FirefoxDriver(profile);
This will always use the firefox with the custom configurations saved on the profile.
Hope this works for you..!!!
Good luck.