internet-explorer

Error on clicking the LinkedIn Share Button on IE/Edge

拥有回忆 提交于 2021-02-05 07:37:58
问题 I am using the below Share Plugin of LinkedIn in my ReactJS app: <script src="https://platform.linkedin.com/in.js" type="text/javascript">lang: en_US</script> <script type="IN/Share" data-url="https://www.linkedin.com"></script> From LinkedIn Docs: https://docs.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/plugins/share-plugin It is working completely fine on Chrome/Firefox/Safari. But, on clicking the LinkedIn Share button (generated by the above scripts), the LinkedIn Share

VBScript set focus on a window in IE

谁说我不能喝 提交于 2021-02-04 18:09:55
问题 I'm updating an old piece of code that uses VBScript to pull up a window in IE. For some reason, it likes to open up behind IE. Google gave me the following couple lines for setting window focus in VBScript: set WshShell = WScript.CreateObject("WScript.Shell") WshShell.AppActivate("calculator") However, when I run this in IE, I get the error "Object required: 'WScript'." Is there any way around this in IE, or another way to do this? I'm already opening and manipulating a Word document without

VBScript set focus on a window in IE

末鹿安然 提交于 2021-02-04 18:08:36
问题 I'm updating an old piece of code that uses VBScript to pull up a window in IE. For some reason, it likes to open up behind IE. Google gave me the following couple lines for setting window focus in VBScript: set WshShell = WScript.CreateObject("WScript.Shell") WshShell.AppActivate("calculator") However, when I run this in IE, I get the error "Object required: 'WScript'." Is there any way around this in IE, or another way to do this? I'm already opening and manipulating a Word document without

VBScript set focus on a window in IE

自作多情 提交于 2021-02-04 18:07:21
问题 I'm updating an old piece of code that uses VBScript to pull up a window in IE. For some reason, it likes to open up behind IE. Google gave me the following couple lines for setting window focus in VBScript: set WshShell = WScript.CreateObject("WScript.Shell") WshShell.AppActivate("calculator") However, when I run this in IE, I get the error "Object required: 'WScript'." Is there any way around this in IE, or another way to do this? I'm already opening and manipulating a Word document without

Use character # in URL inside file name

陌路散爱 提交于 2021-02-04 17:28:09
问题 I need to put a link with this href="file://attachments/aaaa_#_aaaa.msg" Obviously in that way is not working because the hash character # is used for anchors. So I try to change this to: href="file://attachments/aaaa_%23_aaaa.msg" but when I open the url in the IE, the browser is trying to open this: href="file://attachments/aaaa_%2523_aaaa.msg" IE is encoding the % character to %25 How can I put the file name in the URL to encode and read the hash character # in all the browsers to download

Use character # in URL inside file name

爱⌒轻易说出口 提交于 2021-02-04 17:28:05
问题 I need to put a link with this href="file://attachments/aaaa_#_aaaa.msg" Obviously in that way is not working because the hash character # is used for anchors. So I try to change this to: href="file://attachments/aaaa_%23_aaaa.msg" but when I open the url in the IE, the browser is trying to open this: href="file://attachments/aaaa_%2523_aaaa.msg" IE is encoding the % character to %25 How can I put the file name in the URL to encode and read the hash character # in all the browsers to download

How to click a Link on a webpage using VBScript

99封情书 提交于 2021-02-04 14:18:47
问题 Actually i have to click on a link and as a result it will be give two menu list in that i need to select any of those here is my VBScript for launching IE and navigate to required web adress Dim URL Dim IE Set IE = CreateObject("internetexplorer.application") URL = "http://it-asg.uhc.com/sites/gcas/pcas/archive/PCR/IVM/modlist/Lists/ElementTracker/AllItems.aspx" IE.Visible = True IE.Navigate URL Can any any one help me out to click on that link and select any one of those menu source for the

How to make selenium wait before getting contents from the actual website which loads after the landing page through IEDriverServer and IE

人盡茶涼 提交于 2021-02-04 08:21:44
问题 driver = webdriver.Ie("C:\\IEDriverServer.exe") driver.get(testurl) driver.refresh() time.sleep(5) data = driver.find_element_by_id("__content0-value-scr") So I'm trying to find an element by it's id using Selenium (Python) and Internet Explorer, because I'm limited to Internet Explorer due to company regulations. My problem is as follows: on driver.get(testurl) , selenium loads the page but IE first starts up with the IEDriver landing page. Only after that, it loads the requested url. The

Issue on IE with LinkedIn Share plugin

戏子无情 提交于 2021-02-04 08:05:24
问题 I am working for my client and there we have used LinkedIn share plugin (https://developer.linkedin.com/plugins/share) but we have been facing an issue with this plugin while using MS Internet Explorer. When the user clicks on the LinkedIn share plugin on IE, another popup window opens, this popup works fine over other browsers like Firefox, Chrome however on IE (with most users on IE11 and IE Edge), it shows an alert saying: "The webpage you are viewing is trying to close the window." If

Issue on IE with LinkedIn Share plugin

隐身守侯 提交于 2021-02-04 08:04:09
问题 I am working for my client and there we have used LinkedIn share plugin (https://developer.linkedin.com/plugins/share) but we have been facing an issue with this plugin while using MS Internet Explorer. When the user clicks on the LinkedIn share plugin on IE, another popup window opens, this popup works fine over other browsers like Firefox, Chrome however on IE (with most users on IE11 and IE Edge), it shows an alert saying: "The webpage you are viewing is trying to close the window." If