internet-explorer-11

How does the registry entry HKEY_LOCAL_MACHINE\…\FEATURE_BFCACHE for InternetExplorerDriver solves the Internet Explorer 11 issue?

橙三吉。 提交于 2019-12-02 05:11:56
问题 So I am automating a web application in IE11 (Three cheers for government contracting!) and I am following the instructions on the Selenium Wiki to configure the thing because we have had a bunch of weird and wonky behavior. I am at this step here and well, it says that I have add a registry key to help maintain a connection to between the driver and the browser: For IE 11 only, you will need to set a registry entry on the target computer so that the driver can maintain a connection to the

Unable to launch IE 11 when running selenium with IEDriverServer 3.9.0.0

送分小仙女□ 提交于 2019-12-02 04:38:55
I'm having issues launching IE 11 when I run my selenium tests. Here is the code I am using to setup my browser if (browser.equalsIgnoreCase("ie")) { System.setProperty("webdriver.ie.driver", "IEDriverServer.exe"); driver = new InternetExplorerDriver(); } else { throw new Exception("Browser is not correct"); } driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); driver.get("https://www.google.com/"); Dimension dimension = new Dimension(800,600); driver.manage().window().setSize(dimension); } I tried the other solutions base off this thread but still no luck. Stack Link . Is there

Optimize scroll speed for Internet Explorer 11

浪尽此生 提交于 2019-12-02 04:22:23
问题 I currently have an agenda-like application where the first column is absolute horizontal and the first row absolute vertical. I am achieving this by catching the scroll effect and change the left or top property of the CSS class it's attached to. ( these classes can be up to 700 items ( 2 years each day )). $(window).scroll(function () { $('.Planning tr > td:first-child').css("left", "" + $(this).scrollLeft() + "px"); $('.Planning thead > tr:first-child').css("top", $(this).scrollTop()+50 +

How to force ie11 to request a new favicon?

非 Y 不嫁゛ 提交于 2019-12-02 03:43:05
问题 I am working on a website which changes its favicon depending on the user details logged in. A controller processes this request at the back-end and sends the appropriate favicon for the site. So far, I avoided the favicon getting cached by most browsers through this: <link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico?v=${date.time}"/> However, the favicon still gets cached in ie11. No requests were received by the controller when I turned on debug on Netbeans. Things

getPathValue() function for deep objects with arrays and with packed JSON

江枫思渺然 提交于 2019-12-02 03:27:11
问题 For background, please refer to this question: Access deep object member of embeded JSON The solutions offered there worked very well with the packed JSON contained in key values. However, they don't handle the situation where JSON has arrays. The original function I referenced in the other question DID handle arrays, but it would not handle the packed JSON. This is the original function: function getPathValue(obj, path) { return new Function('_', 'return _.' + path)(obj); } and this is the

How to check 32bit or 64bit Internet Explorer 10 and 11?

纵然是瞬间 提交于 2019-12-02 03:00:32
问题 Before IE10 (likes IE9), I can use window.navigator.platform to check IE is 32bit or 64bit. But for IE10 (IE11), window.navigator.platform always returns 32bit. When I open IE11 from C:\Program Files (x86)\Internet Explorer , I saw there is a process IExplorer and another process IExplorer*32 . If one more tab is opened, another process IExplorer*32 is created. But it's the same thing when I open IE10 (IE11) from C:\Program Files\Internet Explorer . So, I don't know whether IE10 and IE11 has

How to check 32bit or 64bit Internet Explorer 10 and 11?

隐身守侯 提交于 2019-12-02 02:08:22
Before IE10 (likes IE9), I can use window.navigator.platform to check IE is 32bit or 64bit. But for IE10 (IE11), window.navigator.platform always returns 32bit. When I open IE11 from C:\Program Files (x86)\Internet Explorer , I saw there is a process IExplorer and another process IExplorer*32 . If one more tab is opened, another process IExplorer*32 is created. But it's the same thing when I open IE10 (IE11) from C:\Program Files\Internet Explorer . So, I don't know whether IE10 and IE11 has both 32bit and 64bit. Maybe the parent framework is 64bit, and each tab is 32bit. Anyone know this? FYI

Gradient not working in IE 10/11

…衆ロ難τιáo~ 提交于 2019-12-02 00:53:51
问题 here my CSS to get the gradient working in any browser, inlcuding IE up to version 9 (IE9): .wrapper { background:-moz-linear-gradient(top , #0f1925, #000) repeat scroll 0 0 transparent; background:-o-linear-gradient(top , #0f1925, #000) repeat scroll 0 0 transparent; background:-webkit-linear-gradient(top , #0f1925, #000) repeat scroll 0 0 transparent; filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr='#0f1925', endColorStr='#000', GradientType=0); } It won't work for IE 10/11

Optimize scroll speed for Internet Explorer 11

孤者浪人 提交于 2019-12-02 00:51:23
I currently have an agenda-like application where the first column is absolute horizontal and the first row absolute vertical. I am achieving this by catching the scroll effect and change the left or top property of the CSS class it's attached to. ( these classes can be up to 700 items ( 2 years each day )). $(window).scroll(function () { $('.Planning tr > td:first-child').css("left", "" + $(this).scrollLeft() + "px"); $('.Planning thead > tr:first-child').css("top", $(this).scrollTop()+50 + "px"); }); This works as expected in all browsers (I tested in Chrome, Firefox and Internet Explorer)

IE11 blurry right hand edge of DIV with border-radius

时光总嘲笑我的痴心妄想 提交于 2019-12-02 00:36:50
I have a problem in IE 11 (On Windows 7) where the right hand edge of a DIV that has a border-radius specified looks blurry. Take a look at this example:- <!DOCTYPE HTML> <html lang="en"> <head> <title>Test Page</title> <style> body { background-color: red; } .Container { background-color: black; margin-left: auto; margin-right: auto; padding-left: 25px; padding-right: 25px; padding-top: 10px; min-height: 300px; width: 600px; } .Surround { background-color: lightgreen; border-radius: 7px; float: left; padding: 6px; width: 588px; } .Inner { background-color: blue; border-radius: 7px; color: