Internet explorer 11 freezing if the dropdown menu of the column filter is open - internet-explorer-11

Please open the following example in internet explorer 11: https://www.ag-grid.com/react-data-grid/row-dragging/#example-simple-unmanaged
Has anyone had this problem? Or any idea what could be the reason?

Related

Missing the explorer pane in bigquary

I am new to bigquary and I am using sandbox lately whenever I open bigquary the explorer pane is not visible. How can I bring the explorer pane back.
I tried to logout and login-that doesn't solve it. please help, thanks.

Excel Macro (VBA) Image upload to Internet Explorer with Open Twebst

I've successfully automatized a process with Open Twebst. (Go through some links, fill the forms and upload images..) So, it helped me to upload images to a HTML page in Internet Explorer 10.
I've just changed my laptop and It has Windows 10 (64bit) and it enables to use only Internet Explorer 11 instead of 10. - Previously the macro was running on Win7 - excel 2013 and IE10 - it was worked perfectly.
Somehow the macro stops when the upload browser window appears. I've already installed the program and added its reference in VBA but I had no luck. I was trying to simulate IE10 but it didn't work. I was also trying to do it in Excel 2013 instead of 2016 but it was the same.
Could someone help me to solve this issue? I searched a lot in this topic and as I can see everyone has the same issue: the VBA can't be able to control that window on his own.
This link contains a tutorial for the method I used:
http://codecentrix.blogspot.com/2009/11/automate-html-file-upload-control.html
HTML tag where I upload: ....input type="file"....
I was trying to modify the security settings in IE11, but it wasn't helped me - I'm not an expert in IE, maybe someone knows how to set it.
I would really appreciate any ideas/ codes.
Many thanks!
Zoltán Báthori

Why does View Source and Find in source in IE 11 not working?

IN IE 11 when I view source and then try searching in the source IE scrolls all over the place and doesn't properly highlight the find results. Anyone else see this problem?
I had the same issue but couldn't resolve it. However, F12 developer options --> Debugger can help you view the source of the page. If developer options didn't work too then, installing below security update should fix it.
For 32 bit system: https://www.microsoft.com/en-us/download/confirmation.aspx?id=45134
For 64 bit system: https://www.microsoft.com/en-us/download/confirmation.aspx?id=45154

opening new tab on IE 11 (not new window) using selenium

I am trying to open a new tab in IE 11 by clicking on a link but instead it opens a new window for when clicking on a link. I googled for proper way of doing it but cant figure out how to achive that. Can any one please help?
While clicking manually link opens in a tab but when doing in by selenium it opens a new window.
I am not adding any code as there is not much to add . I clicked link element using webElement.click() and i have disabled persistentHover in driver capability and I am using selenium with java.
String openInNewTab = Keys.chord(Keys.CONTROL,Keys.RETURN);
webElement.sendKeys(openInNewTab);

How to click on Open/save/save as/cancel button on IE 11 using vba

I would like to click on open when a file download dialog appear in IE 11. I found this code http://www.siddharthrout.com/2011/10/23/vbavb-netvb6click-opensavecancel-button-on-ie-download-window/
But this code does not work with IE11. I have also attached the IE11 download dialog box here too. Anyone has any idea, please, help.
You can use Alt+N to focus on the Notification Bar.
And then send {tab} key to navigate to the specific button.
With VBA, you may use Autohotkey.dll or AutoItX3.dll to send these hotkey combinations.