internet-explorer-11

java.net.ConnectException: Failed to connect to localhost error with Selenium 3.11.0 with IEDriverServer and IE 11 on Windows 10

那年仲夏 提交于 2019-12-12 09:47:32
问题 I am very new to selenium and trying to set up selenium in my laptop to begin. I am unable to invoke IE from my simple code. The details are given below. Can you please help me to understand where the issue is IE version: IE 11, IE Driver: 64-bit, OS: Windows 10 64 bit, Selenium version: 3.11 Error: Started InternetExplorerDriver server (64-bit) 3.9.0.0 Listening on port 29313 Only local connections are allowed Exception in thread "main" org.openqa.selenium.WebDriverException: java.net

IE11 truncates string in console

人走茶凉 提交于 2019-12-12 09:33:09
问题 I have a string of maybe 20 or 30 lines i'd like to output to the console all in one console.log call. This works great in Chrome, but IE11 truncates about half of the string in the console. Any way to prevent this? The string is something like: ----------------------------------------- Wed Jan 7 20:41:16 GMT-0700 2015 530d8aa855df0c2d269a5a5853a47a049c52c9d83a2d71d9 ----------------------------------------- 41:17:181 - Initiating recording... 41:17:233 - Creating NetStream... 41:17:240 -

Not able to open developer tools on a Modal dialog in IE11 on windows 10

↘锁芯ラ 提交于 2019-12-12 09:29:06
问题 Not able to open developer tools on a Modal dialog in IE11 on windows 10. Recently I upgraded to Windows10, I have done the attached settings in my IE but still it is not working. 回答1: Open DevTools -> Console in the main window and run the following command: window.showModalDialog = window.open It will force browser to open all modal dialogs in a regular window. 回答2: The question seems to have been answered elsewhere. Interestingly asked by @vijaykandady on the other forum as well around the

Nested flexboxes: IE11 doesn't respect max-width: 100%

穿精又带淫゛_ 提交于 2019-12-12 08:47:45
问题 I'm working on a two column layout. Both columns will display an iframe, the width of both will be defined as inline-style / be set in the CMS. If the iframe is smaller than the column, it should center vertically. If its bigger than the column, it should shrink to the max width of the column, which is nearly 50% wide. (Yes, this could probably be done without using flexbox twice. But I'm not interested in such answers, because I simplified the example and the use case.) Example : http:/

Could not complete the operation due to error 800a025e

别来无恙 提交于 2019-12-12 08:39:39
问题 What does this error mean in IE10/11: Error: Could not complete the operation due to error 800a025e. And how would I debug it? It says its this line: this.nativeSelection.removeAllRanges(); https://code.google.com/p/rangy/source/browse/trunk/src/js/core/wrappedselection.js#416 See it in action here: http://panmedia.github.io/raptor-editor/tests/cases/selection/selection-expand.html 回答1: I had this error coming up recently, I fixed it with the following chceck: var sel = window.document

beforeunload on IE 11 - do not prompt user does not work

浪尽此生 提交于 2019-12-12 08:23:10
问题 When adding a listener to the global window object for the beforeunload event, IE 11 (and 10) does not behave as Chrome and Firefox. Normally, you return a string that will be used to populate the browser-native dialog prompt or you return an empty string if you do not want the dialog to prompt the user. However, in IE 11, if you return an empty string and/or set the evt.returnValue to an empty string, the browser-native 'Navigate Away' dialog is opened and prompts the user to acknowledge

Emulating print media in Internet Explorer

夙愿已清 提交于 2019-12-12 08:22:58
问题 I am implementing printing of a web page that is originally displayed in Internet Explorer. I would like to use the browser "Inspect Element" functionality when in print mode. So I would like to emulate print media, while still actually displaying the page in the browser. Google Chrome has exactly this functionality. Is this available in Internet Explorer. In particular, IE11? 回答1: I do not believe that IE11 currently supports the F12 developer tools in print preview. I do not know whether

Web application which is working in firefox,chrome and ie8 is not opening in IE10 ,IE11

独自空忆成欢 提交于 2019-12-12 07:28:50
问题 I developed an Web Application which is working fine in all other browser even in IE8 but not working in Latest version of IE like IE10,IE11. In IE11 on button click it throws an error like " Input string was not in a correct format " but in IE8 and other browser it was working without any error. In IE11 if i press F12 and see in DOM Explorer it throws error as: exception in window.onload js plugin.3005-Inprogress. can any one help me to solve this issue. Thanks in advance. On button click i

Keep image ratio using max-width and max-height in IE 11

微笑、不失礼 提交于 2019-12-12 07:17:15
问题 I'm trying to get an image to fit inside a container while keeping it's size ratio. The image should take full height or width depending on orientation. My solution does work on all browsers I've tested but IE11(works in 10 and 9 surprisingly). In IE 11 the image is cropped on the right. I'd like a pure css way if possible and I don't care about centering it. Here is the JSFiddle : https://jsfiddle.net/wagad0u8/ <div class="owl-item" style="width: 465px;"> <a class="img-flux" href="page1.html

How can I write a “debug msg” to the console or elsewise in an old web site?

浪子不回头ぞ 提交于 2019-12-12 06:46:24
问题 I'm adding a bit of functionality to an old ("old" as in "olde"; as in Rip-van-Winkle olde) website that uses VBScript. The upshot of my problem is that certain logic seems to always equate to a single result (IsNewBusiness is always apparently assigned a value of FALSE), whereas it should sometimes equate to the opposite, that logic being: IsNewBusiness = TRUE 'default (if record not found) If Not adoRS.EOF Then IsNewBusiness = adoRS.Fields.Item(0).Value <> 0 End If So, since the logic is