internet-explorer-11

Unable to launch IE 11 when running selenium with IEDriverServer 3.9.0.0

删除回忆录丶 提交于 2020-01-11 11:22:48
问题 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

html2canvas code not working IE 11

梦想的初衷 提交于 2020-01-11 10:03:41
问题 I am hoping to use the html2canvas library to make a image of one div and put it in another. So far I have it working wonderfully in Safari, Chrome, and Firefox but not IE (11 is the only version I care about right now). I am applying it using the code from this jsfiddle from another Stackoverflow question: var aaaDiv=document.getElementById('aaa'); var ttDiv=document.getElementById('tt'); html2canvas(aaaDiv).then(function(canvas) { // assign id:avatarCanvas to canvas canvas.id='avatarCanvas'

html2canvas code not working IE 11

扶醉桌前 提交于 2020-01-11 10:01:39
问题 I am hoping to use the html2canvas library to make a image of one div and put it in another. So far I have it working wonderfully in Safari, Chrome, and Firefox but not IE (11 is the only version I care about right now). I am applying it using the code from this jsfiddle from another Stackoverflow question: var aaaDiv=document.getElementById('aaa'); var ttDiv=document.getElementById('tt'); html2canvas(aaaDiv).then(function(canvas) { // assign id:avatarCanvas to canvas canvas.id='avatarCanvas'

IE cannot scroll while in fullscreen mode

你。 提交于 2020-01-11 03:57:06
问题 I have just found out that IE 11 cannot scroll when it is put into fullscreen mode by Fullscreen API. if (element.msRequestFullscreen) { element.msRequestFullscreen(); } Fullscreen API and scrolling works fine in Chrome and Firefox. When IE 11 is put into fullscreen mode by pressing F11 it works fine. I have tried to find documentation about this, but without luck. Has anyone else encountered this problem? Or knows what I might be doing wrong? 回答1: if you want the entire page fullscreen the

Apply only to IE 11 within media query for screen size

假如想象 提交于 2020-01-10 01:20:10
问题 I currently have following width specific media query. @media only screen and (max-width: 1920px) { .toggleMultiSelect .filter { width: 566px; } } But the width for ' .toggleMultiSelect .filter ' changes in IE from Chrome/Firefox. So basically need to apply different width for the same css class in 1920px for IE. From the Stackoverflow search I found that IE specific behavior can be achieved like below. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .toggleMultiSelect

Converting From Early Binding to Late Binding

落爺英雄遲暮 提交于 2020-01-07 08:08:09
问题 Update # 2 I changed the values of the txtbox and submitbtns with a (0) (and also tried (1) as well), no changes. And I also need to note that the Button has a different name and I updated accordingly here as well. Dim TBox As String 'Name of object textbox to have value changed in Dim TBtn As String 'Name of object button to be pressed TBox = "masked1" TBtn = "button" If Not IE Is Nothing Then Set txtBox = IE.Document.getElementsByClassName(TBox)(0) Set submitBtn = IE.Document

JavaScript Datepicker issue in IE11 - crossobj.visibility=“hidden”;

穿精又带淫゛_ 提交于 2020-01-07 04:47:07
问题 Our Application is a dealer based application. This was implemented basically for IE8 browser, now since the dealers are upgrading to IE11, we are facing lot of issues (majorly in UI) in application. One among the issue is date picker. When the user clicks on date picker in IE11 browser (compatible mode) the date picker popup shows whereas when the user clicks on date picker in IE11 browser (non compatible mode) there is no action performed. When I tried to debugged this using developer tools

Google Fonts 'Rokkitt' not showing on IE11

南笙酒味 提交于 2020-01-06 15:17:50
问题 This website is failing to show the Google font 'Rokkitt' on IE11, it works fine on other browsers. Is this down to the font developer or is it down to font-face issues in IE11? Any help would be massively appreciated. Website is found here: CLICK HERE 回答1: The problem is that your markup specifies IE8 emulation mode: <meta http-equiv="X-UA-Compatible" content="IE-EmulateIE8"></meta> The Google font loader, though, only has access to the User-Agent string. It knows that the browser is IE11,

iframe onload in chrome vs IE11

ε祈祈猫儿з 提交于 2020-01-06 08:36:15
问题 I've been writing my first webapp using Chrome (because of the neat built-in Inspect tool) and all was fine until I tested in IE11 . It's basically a form & iframe that is used for uploading a file (but in the snippet I've just focused on minimal reproduction of the behavior by cutting all that out). The behavior is that in Chrome I click "Submit" and the form triggers the iframe onload event and run some code. In IE11, the onload fires as the page is loaded, and when Submit button is clicked

Menu in WP doesnt show in IE-11

余生长醉 提交于 2020-01-06 08:34:07
问题 I have the next site: id.factor.ua If you open it in IE-11, you cannot see sub-menu in header. Please, help me understand how to fix it! 回答1: Yes, I confirm that there is a issue in IE 11, you can solve it however by specifying the !important element clauses in your CSS rule ul.art-hmenu ul::before {} and ul.art-hmenu::after, ul.art-hmenu ul::after{} (around line 1059). The problem is that this rule is overwritten and interpreted wrong way by IE. However, I see that you generated your theme