internet-explorer-11

How can I automate the download dialog box in IE using VBA?

Deadly 提交于 2019-12-04 06:47:47
问题 I'm completely new on here and have only been using VBA for about 6 months. Needless to say, forum posts on here and a few other places have helped me immensely so far. I'm trying to develop a script to take data from Morningstar and copy it in to excel (note this is for my personal non-commercial use). I'm confident that I can code most of the required VBA but am stuck on automating the selection of "save" when the IE download dialog box pops up. I've seen a few related posts but nothing I

IE 11 clicks on a button and waits until time out selenium webdriver

折月煮酒 提交于 2019-12-04 06:30:45
问题 I have a scenario, where I click a button and a pop up appears, where I need to click another button. Driver is clicking on the button in the page, and with stay's on the same element until timedout. I can see that the button in the pop up is selected but not clicked. I tries using CSS selector instead of XPath. Tried using SendKeys("\n"), Sendkeys(keys.ENTER). Nothing worked. I'm using IE11, selenium webdriver 2.52, windows 8.1. Method where driver waits: public static void ImportThisFile()

Angular Ag Grid Single Click Issue with IE 11

 ̄綄美尐妖づ 提交于 2019-12-04 06:04:23
问题 I am using Ag Grid enterprise version 17.0 with Angular 5. I have enabled single click edit option. It works perfectly in Chrome on single click but it is not working in IE 11. I have to click multiple times to get the cell in edit mode. Can anyone please help me to fix the issue ? Please find the below code which I am using for custom input texts. I have manually added click and dblclick events for it work in IE 11. this.gridOptions.suppressClickEdit = false; this.gridOptions.singleClickEdit

First HTTPS connection is very slow in Internet Explorer 11, what can it be?

我的未来我决定 提交于 2019-12-04 05:50:16
When using Internet Explorer 11 to connect to a HTTPS site of my company, the first connection is very, very slow. Usually more than 30 seconds. After this first connection, I can browse the site with no problem. The problem just happens in Internet Explorer, it works fine in Chrome and Firefox. If after the first visit, I clear the cache and cookies, the next page load is quick. I have to close the browser and reopen it to reproduce the problem. Even if I let the browser idle for a couple of hours, the next visit is still quick. The problem is just in the first visit of a browser to this site

Finding a button in IE11 (IUIAutomationElement)

六月ゝ 毕业季﹏ 提交于 2019-12-04 05:22:40
问题 I have been trying to use exactly the code given in the link below but I cannot get it to work with IE 11. Automate saveas dialouge for IE9 (vba) Copying the code for convenience: Option Explicit Dim ie As InternetExplorer Dim h As LongPtr Private Declare PtrSafe Function FindWindowEx Lib "user32" _ Alias "FindWindowExA" (ByVal hWnd1 As LongPtr, _ ByVal hWnd2 As LongPtr, ByVal lpsz1 As String, _ ByVal lpsz2 As String) As LongPtr Sub Download() Dim o As IUIAutomation Dim e As

ASP.NET website issues with Windows 8.1/IE 11 browser

試著忘記壹切 提交于 2019-12-04 05:21:57
We have ASP.NET application, currently we are doing compatibility testing for this on Windows 8.1/IE 11. Found some issues related to UI alignment, _dopostback and imagebutton click. Previously faced the same issues with Windows 8/IE 10 as well. Those issues are addressed by adding IE browser file in app_browser folder in the project. But we have not found any ie.browser latest file for IE 11 support. From some of the blogs came to know hot fixes are there to resolve this issues.Tried by installing hot fixes in hosted machine, _dopostback and UI alignment issues got resolved. Image button

IE 11 compatibility view

北慕城南 提交于 2019-12-04 05:09:37
问题 My website is broken in IE11. We found that it’s broken due to XSLTProcessor and XPathEvaluator since they are not supported any more in IE. I did some R&D and found that it’s also not supported in IE9 and IE10 but my website is working fine in IE9 and IE10. May I know why it is broken in IE11? In below screenshot, we can see that document mode is Quirks. Don’t we have same behavior for IE11? EDIT We also have meta tag in our master page and it was working fine until IE10 but it’s broken in

Fixed position misbehaviour in IE11

China☆狼群 提交于 2019-12-04 04:42:39
I am experiencing elements position misbehaviour into my page, in IE(11) only; live link here . The logotext, the menu and the left sidebar text, remain in place doesn't move with the wrapper when the left slider is open (clicking on info+ button). I've read about position: fixed + transition in IE problems. I've tried to apply position: expression(fixed); to the header but something went wrong and the wrapper receive a brake-movement at open/closing slider. (The sidebar didn't work with position: expression(fixed); ) Also I've tried to tweak the css modifying the element position values in

IE11 not recognizing HTML5 elements when loading a page from my desktop, any ideas why?

你说的曾经没有我的故事 提交于 2019-12-04 04:37:11
问题 I just started a new job and during my lunch brake I wanted to work on practicing some skills to prep for the MS 70-480 specialist exam. I prefer using Google Chrome, but the company has rules about installing software for personal use so I am stuck working on IE (version:11.0.9600.18015). So in notepad++ I created the simple test for HTML5's video element. <!DOCTYPE html> <html> <head> <title>70-480 Test Page</title> </head> <body> <header> <h1>Practice makes perfect</h1> </header> <section

Insert text in input box in contenteditable div in IE

痴心易碎 提交于 2019-12-04 04:02:27
问题 I am trying to insert text in input box which is in contenteditable div. When I click on input box, the cursor does not appear. I can insert text after double click on input box. This problem occurs in IE. <div contenteditable="true"> <input type="text"> </div> https://jsfiddle.net/spgkpgdy/ Thanks. 回答1: Hello you could try something like this hope it works for you function controlselectHandler(evt) { evt.preventDefault(); } document.body.addEventListener('mscontrolselect',