internet-explorer-11

Does Internet Explorer 11 support border-image?

北城余情 提交于 2019-12-02 09:59:39
As the title, does Internet Explorer 11 support border-image? Because if i use this CSS: .windowtemplate { border: 18px solid black; -webkit-border-image: url("../images/windowtemplate/boxtemp.png") 18 18 18 18 round round; -moz-border-image: url("../images/windowtemplate/boxtemp.png") 18 18 18 18 round round; border-image: url("../images/windowtemplate/boxtemp.png") 18 18 18 18 18 round round; } works in all other browsers (Chrome, Safari, Firefox) except IE11. There is an other way to make border-image work in IE11? As per the note on http://caniuse.com/#feat=border-image : Note that both

How can I automate the download dialog box in IE using VBA?

牧云@^-^@ 提交于 2019-12-02 09:45:12
I'm completely new on here and have only been using VBA for about 6 months. Needless to say, forum posts on here and a few other places have helped me immensely so far. I'm trying to develop a script to take data from Morningstar and copy it in to excel (note this is for my personal non-commercial use). I'm confident that I can code most of the required VBA but am stuck on automating the selection of "save" when the IE download dialog box pops up. I've seen a few related posts but nothing I've been able to reverse-engineer as of yet and any help would be greatly appreciated! My code for this

creating an error message if browser does not support ES6 Template Literals

点点圈 提交于 2019-12-02 09:41:41
I have been using string literals in my javascript. I would like an error message to be shown if string literals are not supported. caniuse My Idea was that i would create a function to see if the browser would correctly parse a string interpolated string var supportsStringInterpulation = false; try { var stringInsert = 'is a'; var stringTestExpected = "this " + stringInsert + " test"; var stringTestAccual = `this ${stringInsert} test`; supportsStringInterpolation = stringTestAccual === stringTestExpected; } catch (err) { console.error("failed to render ` ")} if it is right do nothing if wrong

justify content flex-end not working for IE

拥有回忆 提交于 2019-12-02 09:36:11
Flex-end working for chrome and firefox, but not working for ie, go through following code .flex-container { display: flex; flex-wrap: nowrap; background-color: DodgerBlue; flex-direction: column;flex-flow:column; justify-content: flex-end;height:100px } <h1>Flexible Boxes</h1> <div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> </div> <p>Try to resize the browser window.</p> <p>A container with "flex-wrap: nowrap;" will never wrap its items.</p> <p><strong>Note:</strong> Flexbox is not supported in Internet

IE 11 clicks on a button and waits until time out selenium webdriver

别等时光非礼了梦想. 提交于 2019-12-02 08:18:43
I have a scenario, where I click a button and a pop up appears, where I need to click another button. Driver is clicking on the button in the page, and with stay's on the same element until timedout. I can see that the button in the pop up is selected but not clicked. I tries using CSS selector instead of XPath. Tried using SendKeys("\n"), Sendkeys(keys.ENTER). Nothing worked. I'm using IE11, selenium webdriver 2.52, windows 8.1. Method where driver waits: public static void ImportThisFile() { try { new WebDriverWait(Drivers._driverInstance, TimeSpan.FromSeconds(2000)); Drivers._driverInstance

Rowspan and colspan problems in IE

巧了我就是萌 提交于 2019-12-02 07:42:16
问题 So, I need to create table with complicated system of colspans and rowspans. You can look at that here This is html: <table cellspacing="0" cellpadding="0" style="table-layout: fixed; width: 900px;"> <tr> <td colspan="3" rowspan="3" > <img src="http://welb-studio.com/wp-content/lenden-design/pictures/portfolio/gag.jpg" style="width: 100%;" /> </td> <td colspan="2" rowspan="2" > <img src="http://welb-studio.com/wp-content/lenden-design/pictures/portfolio/ts2.jpg" style="width: 100%;" /> </td>

Get undefined javascript function in IE 11

孤街醉人 提交于 2019-12-02 07:23:45
I got some error when call function in IE 11. In my case I have two scripts inside one <script> tag. This is my function : <script> function test() { alert("oke"); var currency = $('#curr_drop').val(); var total_room_qty = calculate_amount(currency); // total all room var btn_class = $('#book_button').prop('class'); var this_qty = $(this).val(); var this_plan_type = $(this).data('plan-type'); var this_plan_id = $(this).data('plan-id'); var this_plan_day = $(this).data('plan-day'); } function calculate_amount(currency = 'IDR') { //alert("ok"); var nights = $('[name="nights"]').val(); var total

MSGestureHold is ignored by WebBrowser Control for Windows Phone 8.1

北战南征 提交于 2019-12-02 06:53:03
问题 I am updating my browser app to support Windows Phone 8.1 and I noticed the MSGestureHold event is not raised. To reproduce this error, Download the MS Mini-browser Sample. Upgrade the project to WP8.1 project in Visual Studio 2013 and add IsScriptEnabled="True" . Run the project on WP8.1 emulator or device Navigate to this touch and mouse example. Scroll down to the Sample 1: handling the hold gesture section and click the IE11 users test. Notice that MSGestureHold is not working. However

Finding a button in IE11 (IUIAutomationElement)

不羁岁月 提交于 2019-12-02 06:09:40
I have been trying to use exactly the code given in the link below but I cannot get it to work with IE 11. Automate saveas dialouge for IE9 (vba) Copying the code for convenience: Option Explicit Dim ie As InternetExplorer Dim h As LongPtr Private Declare PtrSafe Function FindWindowEx Lib "user32" _ Alias "FindWindowExA" (ByVal hWnd1 As LongPtr, _ ByVal hWnd2 As LongPtr, ByVal lpsz1 As String, _ ByVal lpsz2 As String) As LongPtr Sub Download() Dim o As IUIAutomation Dim e As IUIAutomationElement Set o = New CUIAutomation h = ie.Hwnd h = FindWindowEx(h, 0, "Frame Notification Bar", vbNullString

IE11 Automation via Excel VBA - company webpage

↘锁芯ラ 提交于 2019-12-02 05:47:19
问题 First I'm very new to trying to automate IE via Excel VBA. That being said, I'm working to automate a login to a company-specific webpage (only accessible to our employees). The goal is to automate the login (employee number, password and click Login). I find Firefox to be particularly helpful in identifying fields so that's what I'm using in the screenshot. I found some code online to navigate to a webpage and enter something into a search box. I've modified that as follows (the included