microsoft-edge

Selenium Edge driver not getting URL - java

不羁岁月 提交于 2019-12-01 10:40:28
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 of the WebDriver class. This successfully starts the Edge browser but, the url that I attempt to get

Angular2 app is not working on Microsoft edge

谁说胖子不能爱 提交于 2019-12-01 09:12:51
My angular2 application is not working on Microsoft edge, while it's working fine on chrome and firefox. I looked at this question, but it didn't help me. I am getting following error on the Edge console: Below is package.json file: { "name": "angular app", "version": "1.0.0", "scripts": { "start": "concurrently \"tsc -w\" \"lite-server\" ", "lite": "lite-server", "tsc": "tsc", "tsc:w": "tsc -w", "publish": "gulp agnular_Production_Version" }, "licenses": [ { "type": "MIT", "url": "https://github.com/angular/angular.io/blob/master/LICENSE" } ], "dependencies": { "@angular/common": "~2.1.1", "

Open Edge in InPrivate mode using Selenium

旧巷老猫 提交于 2019-12-01 08:56:00
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 is stored and the session is not private. Shubham Jain Use the below code, employing java.awt.Robot to

using @font-face in Microsoft Edge

泄露秘密 提交于 2019-12-01 05:44:59
I am dealing with a strange issue here.. It seems that Microsoft Edge browser doesn't load fonts when I use @font-face. I checked all my computers that run Windows 10 & Microsoft Edge. I checked http://caniuse.com/#search=font%20face It says that font-face is compatible with Edge so I don't know what's going on. In my example I just have a div and its font parameter. CSS @font-face{font-family:'Dosis';font-style:normal;font-weight:200;src:local('Dosis ExtraLight'), local('Dosis-ExtraLight'), url(http://fonts.gstatic.com/s/dosis/v4/RPKDmaFi75RJkvjWaDDb0vesZW2xOQ-xsNqO47m55DA.woff2) format(

Microsoft Edge does not allow localhost loopback for websockets

为君一笑 提交于 2019-12-01 04:28:10
I have web-site and desktop application, and I want to connect them by websockets. So my web-site tries to connect to wss://localhost:8080, for example. It works in IE11, but in "MS Edge" I have an error: Cross zone request is not allowed I have this problem on Win10 10240, so the flag "Allow localhost loopback" is enabled by default, and it did not help. When I use CheckNetIsolation LoopbackExempt -a -n="Microsoft.MicrosoftEdge_8wekyb3d8bbwe" or this utility , all works as expected. So, is this a case, that in new builds of "MS Edge" loopbacks are allowed for http, but not allowed for

How to debug Angular application in VSCode using Edge browser?

那年仲夏 提交于 2019-12-01 04:19:19
问题 I am using Edge extension. Below is configuration in launch.json : "configurations": [ { "name": "ng serve", "type": "edge", "request": "launch", "url": "http://localhost:4200/", "webRoot": "${workspaceFolder}", "sourceMaps": true }] Here is more detailed steps as per documentation in VS Code: npm install -g @angular/cli, ng new my-app Install Edge extension Reload Project npm start Go to the Debug view ( Ctrl + Shift + D ) and click on gear button to create a launch.json debugger

focus() in Edge browser

孤街浪徒 提交于 2019-12-01 04:12:37
问题 I am using popup.focus() to focus a popup window after a button is clicked. The focus() is working fine for all the browsers except for ****EDGE**** browser. The issue I am facing is intermittent. At times I am able to view the popup window (child popup dialog box) on the browser and at times behind the browser i.e. on the desktop and I am able to identify that the popup is open by the flashing on the task bar. Any suggestion would be really appreciated. var popup = new PopupWind(url,'config'

Favicon NOT working on Edge

China☆狼群 提交于 2019-12-01 02:03:14
I have a problem with this favicon I generated for a local server php project. It works fine on most browsers (Google Chrome, Mozilla Firefox and Opera) but on Microsoft Edge it doesn't work (It shows the default tab favicon). I've tried many solutions to this problem like clearing the cache, using image format (.png) instead of icon (.ico), but nothing seemed to work. Here are the lines of code that I've included in the HTML head: <link rel="icon" href="<?php echo Yii::$app->request->baseUrl; ?>/favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="<?php echo Yii::$app->request-

How to report problems in the Edge browser to Microsoft?

笑着哭i 提交于 2019-12-01 00:55:21
问题 Our big, single-page JavaScript app does not work at all in the Edge browser. (We officially support it in Chrome and Firefox, we don't allow it to be used in IE because it only half works there, and we chose not to do all the IE specific work.) I have submitted issues in the past to the webkit team via their bugzilla tracker. I have googled around and do not see a way to submit issues to the Edge team at all. Is there a known way to collaborate with Microsoft on Edge? UPDATE The Edge browser

Favicon NOT working on Edge

送分小仙女□ 提交于 2019-11-30 22:18:06
问题 I have a problem with this favicon I generated for a local server php project. It works fine on most browsers (Google Chrome, Mozilla Firefox and Opera) but on Microsoft Edge it doesn't work (It shows the default tab favicon). I've tried many solutions to this problem like clearing the cache, using image format (.png) instead of icon (.ico), but nothing seemed to work. Here are the lines of code that I've included in the HTML head: <link rel="icon" href="<?php echo Yii::$app->request->baseUrl