internet-explorer

how fix “this certificate cannot be verified up to a trusted certification authority”

我们两清 提交于 2021-01-18 06:10:49
问题 I have problem in IE9 with securiry certificate. Then I go to specific address I got There is a problem with this website's security certificate. How can I avoid appearence of this window? I try enter on Continue to this website (not recommended). - cectificate error - View Certificates. I see that This certificate is OK. in certificate Status on certification Path tab. But on the tab General I see text: This certificate cannot be verified up to a trusted certification authority 1) Install

Excel VBA Variable in URL

ε祈祈猫儿з 提交于 2021-01-07 08:04:10
问题 I would like to include a variable in a Google search URL. The URL, at present is: IE.Navigate "https://www.google.com/search?q= DNR-12-1G +$+Price" How would I replace the emboldened URL text with a defined string variable such as "pn"? Thanks 回答1: To use a variable all you need is to substitute the text with it IE.Navigate "https://www.google.com/search?q=" & pn & "+$+Price" That would do the job. If you wanted to use the content of a cell, either set pn to the cell value like this: pn =

Google recaptcha error in ie 11

依然范特西╮ 提交于 2020-12-28 20:41:38
问题 I am getting the following error in IE 11: SCRIPT5007: unable to get property "toString" of undefined or null reference recaptcha__iw.js (451, 41) Could it be possible that there is an error in the script? Working on Safari, Chrome and Firefox. 回答1: Add this meta on the html header to enable some HTML5 feature for Internet Explorer 11.. <meta http-equiv="X-UA-Compatible" content="IE=edge"> If it's not working then open Compability View Settings and remove google.com Open developer tools and

Google recaptcha error in ie 11

旧巷老猫 提交于 2020-12-28 20:35:08
问题 I am getting the following error in IE 11: SCRIPT5007: unable to get property "toString" of undefined or null reference recaptcha__iw.js (451, 41) Could it be possible that there is an error in the script? Working on Safari, Chrome and Firefox. 回答1: Add this meta on the html header to enable some HTML5 feature for Internet Explorer 11.. <meta http-equiv="X-UA-Compatible" content="IE=edge"> If it's not working then open Compability View Settings and remove google.com Open developer tools and

After build via Webpack 5 app stoped working on Internet Explorer (IE11)

依然范特西╮ 提交于 2020-12-15 06:09:01
问题 As announced in Webpacks 5.0 release blog post build still works in most browsers after a few minor adjustments in webpack.config.js . But it stopped working in Internet Explorer (11) because the generated output is mixed ES6 and ES5 and therefore incompatible with IE (see image). As it actually leads to no successful build using a variety of babel plugins I'm asking myself if theres an "easy" way to specify ES5 as the generated output. From beta phase of webpack-5 I found a flag on Medium

After build via Webpack 5 app stoped working on Internet Explorer (IE11)

删除回忆录丶 提交于 2020-12-15 06:07:01
问题 As announced in Webpacks 5.0 release blog post build still works in most browsers after a few minor adjustments in webpack.config.js . But it stopped working in Internet Explorer (11) because the generated output is mixed ES6 and ES5 and therefore incompatible with IE (see image). As it actually leads to no successful build using a variety of babel plugins I'm asking myself if theres an "easy" way to specify ES5 as the generated output. From beta phase of webpack-5 I found a flag on Medium

Enable Protected Mode must be set to the same value (enabled or disabled) for all zones

落花浮王杯 提交于 2020-12-10 00:34:29
问题 I am trying to use the Selenium Internet Explorer driver but it is breaking when I try to instantiate it: [TestInitialize] public void TestInitialise() { ieDriver = new InternetExplorerDriver(); } with the following error: Enable Protected Mode must be set to the same value (enabled or disabled) for all zones. (NoSuchDriver). I have found an apparent solution to my problem here, which suggests setting the driver's DesiredCapabilities , as shown: var capabilitiesInternet = new OpenQA.Selenium

Enable Protected Mode must be set to the same value (enabled or disabled) for all zones

匆匆过客 提交于 2020-12-10 00:27:41
问题 I am trying to use the Selenium Internet Explorer driver but it is breaking when I try to instantiate it: [TestInitialize] public void TestInitialise() { ieDriver = new InternetExplorerDriver(); } with the following error: Enable Protected Mode must be set to the same value (enabled or disabled) for all zones. (NoSuchDriver). I have found an apparent solution to my problem here, which suggests setting the driver's DesiredCapabilities , as shown: var capabilitiesInternet = new OpenQA.Selenium

IE localStorage event misfired

耗尽温柔 提交于 2020-12-01 03:49:28
问题 Within Internet Explorer 9 & 10, the localStorage implementation fires events unexpectedly (great thread here: Bug with Chrome's localStorage implementation?) Does anybody know of a way to stop the storage event from firing on tabs that initiated the change within internet explorer? For example the following shouldn't show an alert when the add button is clicked, but it does in IE: fiddle: http://jsfiddle.net/MKFLs/ <!DOCTYPE html> <html> <head> <title>Chrome localStorage Test</title> <script

How do I redirect IE11 to Edge like Stack Overflow

谁说我不能喝 提交于 2020-11-24 17:45:25
问题 When you navigate to https://stackoverflow.com in IE11, it redirects the user to Edge with the following tab open: https://support.microsoft.com/en-us/office/the-website-you-were-trying-to-reach-doesn-t-work-with-internet-explorer-8f5fc675-cd47-414c-9535-12821ddfc554?ui=en-us&rs=en-us&ad=us How do I implement this in my own site? Is there a meta tag that can enable this? EDIT: Here's a clip of what it looks like. Tried on Windows 10. https://streamable.com/nwtt22 回答1: Ah yes, I wondered this