internet-explorer-10

Basic authentication with Selenium in Internet Explorer 10

冷暖自知 提交于 2019-11-27 23:12:40
One of our webapplications is using Basic Authentication and build with AngularJS. To test this application, I use Protractor, which uses Selenium to communicate with browsers. In Chrome, everything works fine and doing basic authentication is easy: username:password@host.ext Under Internet Explorer, the URL's with password and username are expected to be a security risk and are therefor not allowed. Until Internet Explorer 9, this setting could be turned off in the registry (FEATURE_HTTP_USERNAME_PASSWORD_DISABLE) . When setting this registry key for Internet Explorer 10, the behaviour

Accessing IE tabs once created

谁都会走 提交于 2019-11-27 21:41:51
Using VBA I can create an InternetExplorer object with 3 different tabs using the following Option Explicit Public Enum IE_READYSTATE Uninitialised = 0 Loading = 1 Loaded = 2 Interactive = 3 complete = 4 End Enum Sub Example_Click() Dim ieApp As clsIE 'Create IE and login If ieApp Is Nothing Then Set ieApp = New clsIE With ieApp 'IE Tab1 .IE.Visible = True .IE.navigate "http://www.bbc.co.uk/news/" Do While .IE.Busy Or Not .IE.readyState = IE_READYSTATE.complete: DoEvents: Loop 'IE Tab2 .IE.Navigate2 "http://www.bbc.co.uk", CLng(2048) Do While .IE.Busy Or Not .IE.readyState = IE_READYSTATE

backside-visibility not working in IE10 - works fine in webkit

情到浓时终转凉″ 提交于 2019-11-27 21:41:37
I'm building a simple pure-css 'card flip' animation, it has to work in IE10, but sadly what I've written doesn't. jsFiddle demo here or sample html zip here I can see that backside-visibility works in IE10 from their demo here so maybe I've just overlooked something stupid, maybe a fresh pair of eyes might help! Thanks in advance! Well some Microsoft IE devs saw my tweet and jumped in with a fix already! Apparently IE10 does not support preserve-3d, and they whipped up this jsFiddle demonstration Big thanks to @reybango and @sgalineau for the help - very much appreciated. redochka This seems

VBA hanging on ie.busy and readystate check

我是研究僧i 提交于 2019-11-27 21:35:17
I am trying to grab some football player data from a website to fill a privately used database. I've included the entire code below. This first section is a looper that calls the second function to fill a database. I've run this code in MSAccess to fill a database last summer and it worked great. Now I am only getting a few teams to fill before the program gets hung up at While IE.Busy Or IE.ReadyState <> READYSTATE_COMPLETE: DoEvents: Wend I've searched countless websites regarding this error and tried changing this code by putting in sub function to wait a period of seconds or other work

IE 9 and IE 10 cannot enter text into input text boxes from time to time

我是研究僧i 提交于 2019-11-27 20:28:33
There is a web page with an iframe inside. Sometimes, Input text box controls, inside the iframe, are locked/ freezed. Users cannot enter text into them. But the text box can be focused and not faded. There is no code to disable the input controls and this does not always happen. Up until now, this is happening only in IE 9 and IE 10. Firefox and Chrome is OK. Brief description of how the page works is: There is a button on the parent page. By clicking it will build an iframe from scratch and show it. This is done by Javascript. Again, there is a button on the iframe to close it. By clicking

SVG line markers not updating when line moves in IE10?

泄露秘密 提交于 2019-11-27 19:25:39
I have some SVG lines with line markers on them, and I have a script that moves those lines around. This works fine on all browsers, including IE9. However, I just tried it on IE10, and the line markers get left behind when the line moves. An example of this can be seen here: http://jsfiddle.net/swYRK/8/ I have tried this on both Windows 7 and 8. Anyone know what's going on? Is this an IE10 bug, or is there another way to move the line and markers? (Note the actual application is very performance sensitive, so I very much want to avoid doing something like re-creating the lines every frame

Force IE10 to run in IE10 Compatibility View?

空扰寡人 提交于 2019-11-27 19:01:22
I have an app that is broke in IE10 but runs fine in IE10 Compatibility View. A quick google results in the <meta http-equiv="X-UA-Compatible" content="IE=8"> <!-- plus variations such as emulate, quirks, 7, 8, 9 ---> tag. Some MS documentation on the tag is here . If you press F12 you can see that it changes the document mode. I need it to change the Browser Mode to Internet Explorer 10 Compatibility View. Is there any tag that will do this? UPDATE I need to mention that I have tried all of the following doctypes and none of them work. I think the only way to get this to work in IE10 is to

Font-awesome disappears after refresh for all ie browsers ie11,ie10,ie9

浪尽此生 提交于 2019-11-27 18:56:37
问题 I know it seems this question has been asked before, but the solutions I've found are for IE8 only. We are using Font Awesome 4.1.0 and Bootstrap v3.0.3 in our project. If we load the page for the very first time all the icons render properly. When we reload page in Internet Explorer using Ctrl + R, they disappear. This issue is occurring for all IE versions we've tested, including IE11. 回答1: So the issue was on IE with https in all the request one header related to no-catch pragma was coming

Why does display: -ms-flex; -ms-justify-content: center; not work in IE10? [closed]

余生长醉 提交于 2019-11-27 18:46:44
Why doesn't the following code work in IE10? .foo { display: -ms-flex; -ms-justify-content: center; } What do I need to write in order for them to work? IE10 implemented the Flexbox draft from March 2012 . Those properties correspond to these: .foo { display: -ms-flexbox; -ms-flex-pack: center; } A good place to start when trying to get the syntax right for all browsers is http://the-echoplex.net/flexyboxes/ For centering elements horizontally and vertically within a container you'll get code something like this: (working in Chrome,FF,Opera 12.1+ and IE 10+) FIDDLE <div class="flex-container">

How can I disable the clear button that IE10 inserts into textboxes?

血红的双手。 提交于 2019-11-27 18:16:26
How can I disable the new functionality in Internet Explorer 10 that shows a little 'x' in a textbox when it's focused and I have content in it? input[type=text]::-ms-clear { display: none; } In IE 10+ , text inputs (input[type=text]) show a (x) button on the right-side on the field once you start typing, it's used to clear/remove the entered text value. In Chrome , search inputs (input[type=search]) show a similar button. If you prefer to remove either of them for IE10+ and/or Chrome. You can add the style below to hide this button from the input. See it in action... http://codepen.io