While automating the web page which includes Vidyo Web player plugin. If I am navigating to the Video page, the allow pop-up is showing. I have tried to with the below code to handle allow pop-up. But it's not working.
Below is the code which am using,
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("security.mixed_content.block_active_content", true);
profile.setPreference("security.mixed_content.block_display_content", false);
WebDriver driver = new FirefoxDriver(profile);
Can any one help on this?
Thanks in Advance.