microsoft-edge

Windows 8 prepare site for pinning

落花浮王杯 提交于 2019-12-09 04:06:38
问题 I would like to prepare my site for windows 8 pinning and have been reading some documentation on how to add the various images and could figure out that it could be done by using metadata and according to instructions and help on this site I could actually build the following meta tags but i couldn't figure out where I can call the browserdetect.xml file assuming I have the file located at mysitee.com/upload/win8/browserdetetct.xml and the images in the same folder <meta name="application

How to add Edge as my debug browser in Visual Studio 2012 on Windows 10?

亡梦爱人 提交于 2019-12-08 19:10:54
问题 I upgraded my laptop to Windows 10 yesterday. I want to be able to use MS Edge when I debug my code in Visual Studio 2012. I can't find the browser executable nor do I know if I need any special command line parameters necessary to make it work right. Any hints or tips on this? 回答1: You can add Microsoft Edge to your browser list to run directly into Microsoft Edge browser. As you can see click on browser switcher as in below image and click on " Browse With... ". Now click on Add button and

URL Length limitation of Microsoft Edge

女生的网名这么多〃 提交于 2019-12-08 14:50:23
问题 does anybody know URL length limitation for Microsoft Edge? As you know, Internet Explorer has limitation for URL length, Maximum length is 2048. How about Edge? I guess, it should be gone for now... 回答1: The limit appears to be around 81578 characters . After that, I get a silent failure with no request made to the server. The URL I was using to test looked like: http://xx.xx.xxx.xxx:xxxx/?81578-characters-here I'm not sure whether the length of the host name is factored in. It's also worth

Hiding the scroll bar in MS Edge and Firefox? [duplicate]

心已入冬 提交于 2019-12-08 11:14:58
问题 This question already has answers here : Hidden scrollbars in Firefox (allows scrolling but just no scrollbar) (5 answers) Closed 4 years ago . I have a scrollable menu, which needs to be scrollable. I hide the scroll bar in Chrome by using: .menu::-webkit-scrollbar { display: none; } Which works. What is the same for Firefox and MS Edge that will do the same? Thanks 回答1: What about overflow-y: auto? That should show the scrollbar only when the menu is longer than the viewport. 回答2: The

Unable to run JavaScript in external file in Microsoft Edge browser

删除回忆录丶 提交于 2019-12-08 07:48:51
问题 I'm trying to get a piece of JavaScript to run using Microsoft Edge, but it does not run when the JavaScript code is held in an external .js file. No errors are returned, and all I can readily get from the debugger is that the function does not exist. The code works perfectly well in IE 11, Chrome 45 and Firefox 39. The JavaScript embedded in the HTML page itself always works fine. Can someone give me a steer as to what I am doing wrong? The HTML file is called hjt01.htm and the external

Time difference between chrome / edge on windows 10

别等时光非礼了梦想. 提交于 2019-12-08 06:40:03
问题 I get TZ difference on windows 10 between Chrome and Edge. When I run this code in the console: > var date = new Date(2013, 2, 29, 1, 0, 0, 0); > date This will be the output when running in on Edge > [date] Fri Mar 29 2013 01:00:00 GMT+0200 (Jerusalem Standard Time) While This will be the output on Chrome: > [date] Fri Mar 29 2013 01:00:00 GMT+0300 (Jerusalem Daylight Time) It seems that in Chrome it is recognise as DST but in Edge it doesn’t, which is correct. (Attached screenshot) If I

(click) only working in Chrome not working in others

可紊 提交于 2019-12-08 04:48:49
问题 I've created an Angular web app, link :- http://mohitkyadav.github.io/algos-ngular Now when I browse this site in Chrome, everything works fine as expected but in other browsers like Edge and Firefox when I click the elements in side-nav on my app nothing happens, after adding some console.log("hi") I figured out the problem. see this line on github https://github.com/mohitkyadav/algos-ngular/blob/master/src/app/views/content.component.html#L7 an click event should be fired. ( typescript )

Edge browser crashing after initial watir-webdriver launch

落花浮王杯 提交于 2019-12-08 03:15:10
问题 I'm using the latest selenium-webdriver (2.47.1) and watir-webdriver (0.8.0) and have the Edge WebDriver installed in the Ruby/bin folder like other webdriver.exe files; like chromedriver or iedriver. It appears to launch the Edge browser but does not attempt to goto the URL before closing the browser out and failing all of my tests. I have it allowed by the Firewall within Windows, when i run my rspec tests it states: Selenium::WebDriver::Error::NoSuchWindowError: no such window Has anybody

Webdriver MS Edge browser does not get URL

喜夏-厌秋 提交于 2019-12-07 23:22:21
问题 I tried to navigate URL with MS Edge Browser but it giving me error. My Environment is as follows: Windows: 10 64x pro. Browser: MS Edge 25.10586.0.0 Selenium WebDriver: 2.48.2 import org.openqa.selenium.WebDriver; import org.openqa.selenium.edge.EdgeDriver; public class edgeBrowser { public static void main(String[] args) { System.setProperty("webdriver.edge.driver", "C:\\Program Files (x86)\\Microsoft Web Driver\\MicrosoftWebDriver.exe"); WebDriver driver = new EdgeDriver(); driver.get(

Communication between content script and background script in Microsoft Edge

给你一囗甜甜゛ 提交于 2019-12-07 20:09:22
问题 I have a problem with communication based on browser.runtime.connect between a content script and a background script of my test echo extension. I have published my code and extension package on github. Short description of this extension. You can run the extension on this GitHub test page. The content script connects to the background script using browser.runtime.connect and sends a message via browser.runtime.Port object when “Submit” button is clicked. The background script receives the