microsoft-edge

Office-js addin with Excel and Edge Webview - how to delete cache?

ε祈祈猫儿з 提交于 2019-12-19 11:44:33
问题 We are developing an office-js javascript addin for Excel. We are testing the addin with sideloading in Excel on Windows. After updating Windows and Excel to new versions, the webview in Office/Excel has changed from IE to Edge. Now we need to delete the Edge browser cache in order to see the changes in the updated web service. To completely reload a sideloaded office-addin, it was sufficient to delete the local storage and IE browser cache. After updating to the Edge webview, we do not

Selenium Edge driver not getting URL - java

放肆的年华 提交于 2019-12-19 10:07:58
问题 I have recently updated my selenium libraries from 2.46.0 to 2.53.0 (the most recent) in order to run tests on a Windows 10 machine with the Edge browser. I have added this to my tests' setup phase to initialize the webdriver as an EdgeDriver: System.setProperty("webdriver.edge.driver", driverDir+"MicrosoftWebDriver.exe"); DesiredCapabilities capabilities = new DesiredCapabilities("MicrosoftEdge", "", Platform.WINDOWS); driver = new EdgeDriver(capabilities); the "driver" field being an object

Open Edge in InPrivate mode using Selenium

柔情痞子 提交于 2019-12-19 09:48:18
问题 I am using Selenium 3.4 to launch Edge using the Microsoft WebDriver which is now maintained by Microsoft. Is there any way I can launch the Browser in InPrivate mode using Selenium? I have searched for answers but couldn't find any. The closest I got was How to start Edge browser in Incognito mode using selenium remote webdriver? The solution mentioned there doesn't work. It just shows the same tab as would be shown in InPrivate, but the window isn't a private one. As such, the information

jQuery append() into new window not working with Microsoft Edge

半腔热情 提交于 2019-12-19 09:24:49
问题 Microsoft Edge is throwing 'No such interface supported' error when trying to append cloned content into new window. Here is an example: jQuery(document).ready(function() { jQuery('.trigger').click(function() { var target = jQuery(this).data('print_target'); var w = window.open('', '', 'status=no, toolbar=no, menubar=no, location=no'); var print_html = '<!DOCTYPE html><head><title>' + document.getElementsByTagName('title')[0].innerHTML + '</title></head><body></body></html>'; w.document.write

AngularJS bug in IE with style vs ng-style

孤者浪人 提交于 2019-12-19 08:22:48
问题 I'm using Angular JS v1.1.5, and found an interesting IE-related issue. In IE 9, 10, 11 and Edge, the following does not seem to work, even though it works fine in Chrome: <div style="width: {{progress.percent()}}%;"></div> Whereas this works in all browsers: <div ng-style="{width: progress.percent() + '%'}"></div> I'm curious why the first option doesn't work in IE/Edge. Are there any known bugs around this? 回答1: When IE 9 & 10 tries to render that HTML, it basically removes the invalid HTML

AngularJS bug in IE with style vs ng-style

早过忘川 提交于 2019-12-19 08:22:34
问题 I'm using Angular JS v1.1.5, and found an interesting IE-related issue. In IE 9, 10, 11 and Edge, the following does not seem to work, even though it works fine in Chrome: <div style="width: {{progress.percent()}}%;"></div> Whereas this works in all browsers: <div ng-style="{width: progress.percent() + '%'}"></div> I'm curious why the first option doesn't work in IE/Edge. Are there any known bugs around this? 回答1: When IE 9 & 10 tries to render that HTML, it basically removes the invalid HTML

Will Microsoft Edge use prefixes like -webkit- or -ms-?

你。 提交于 2019-12-19 05:12:56
问题 Will Microsoft Edge use prefixes like -webkit- , -ms- , or its own new prefix for future functions? Something like -me- , perhaps? 回答1: tl;dr: Yes and No Existing prefixed properties that are hugely popular will remain until they have native support, but Microsoft Edge will not be introducing a new prefix system for features. Instead, they'll use feature flags (like Chrome and Firefox for experimental features on the client side, rather than the developer side). Direct Source Some of the more

How to debug why MS Edge/IE11 does not load sourcemap

徘徊边缘 提交于 2019-12-19 05:11:03
问题 I made some source+map concatenation and result works in Firefox and Chrome, but does not even request bundle.js.map from webserver in MS Edge and IE11. Actual JS file is served from http://localhost:8080/bundle.js bundle.js ends with line: //# sourceMappingURL=bundle.js.map Tried both end it with new line and without, does not work in both cases. Is there some checklist to look at or even some "validator"? 回答1: Microsoft Edge expects a single sourcemap comment, located at the end of the file

Does RTCPeerConnection work in Microsoft Edge?

有些话、适合烂在心里 提交于 2019-12-18 21:17:37
问题 I am currently working on VoIP using WebRTC. It's going to be a UWP application written in JavaScript. Now, I am trying to check whether it works or not by testing samples from https://webrtc.github.io/samples on Microsoft Edge. It turns out that it works fine except RTCPeerConnection . For example, when I opened https://webrtc.github.io/samples/src/content/peerconnection/audio in Edge, it gave me getUserMedia() error: NotFoundError when I clicked the call button. On Chrome, it works fine.

Microsoft Edge adds parameters after navigating to a route on angular 2

我们两清 提交于 2019-12-18 13:30:50
问题 I have a form being filled in two steps, the first form fills in the main part of an object and the second, the sub-part. There is a method that navigates back from form2 to form1 that works on Chrome and Firefox, but with Microsoft Edge it seems to add "/?object", and it's something that I'm not doing in code. my button to go back from form2 to form1 <button class="btn btn-default pull-right" (click)="onCancel()">{{ 'button.back' | translate }}</button> my method onCancel() onCancel() { this