microsoft-edge

Issue with specific version of IE/ Edge browsers (“Session_Start” event is triggered)

倖福魔咒の 提交于 2020-02-06 07:29:51
问题 I am facing a strange issue in a particular version of IE/ Edge browsers (Ex:- IE 11.0.9600.19329). The issue is, when I click on 'Ctrl+P' on a specific page in my application "Session_Start" event gets fired, which is not happening in other browsers. I have verified different forums, but couldn't find any solution. Any suggestion to resolve this issue? 回答1: Can't reproduce the problem, it works well on my side. Try to reset the browser setting (IE browser and Edge browser), if still meet

Microsoft Web Driver has stopped working. A problem cause the program to stop working correctly error using EdgeDriver and Microsoft Edge in Selenium

旧城冷巷雨未停 提交于 2020-02-05 06:54:18
问题 How do I run Microsoft Edge in Selenium. Each time I run a test, the Edge browser opens but does not load any URL. It then displays a small dialog box with the text: Microsoft Web Driver has stopped working. A problem cause the program to stop working correctly. Please close the program I am using: Windows 10 OS 17763.914 Selenium.WebDriver.MicrosoftDriver version 17.17134.0 Selenium support Version 3.141.0 Selenium Web-driver version 3.141.0 and Microsoft Edge Browser Version 18.17763. It's

Select control created in React does not reset on browser refresh (IE11 and Edge)

☆樱花仙子☆ 提交于 2020-02-03 07:32:13
问题 I have a very simple React application with just one select control. See working application here. The select control has 3 values: Sunday, Monday and Tuesday. Sunday is the default value. Unfortunately on IE11 and Microsoft Edge, the select control gets stuck on the selected value even after a browser refresh! For example, select Tuesday and then refresh the browser - the select box does not return to Sunday, it gets stuck on Tuesday! On Chrome and Safari, I don't see this issue. (Note: You

Position Fixed not working when CSS Filters applied on same element in Microsoft Edge

自闭症网瘾萝莉.ら 提交于 2020-02-03 03:46:12
问题 I am testing this on Edge 20.10240.16384.0 I have an element whose position is fixed and has CSS Filters applied to it. This works great in all browsers except Microsoft Edge, where the position of the element doesn't remain fixed. This issue is directly related to CSS3 Filters as removing them makes the position fixed work correctly Here is a basic example of this. It works correctly (aka the fixed background remains fixed) on browsers other than Microsoft Edge. <!DOCTYPE html> <html> <head>

Microsoft Edge: XMLHttpRequest: Network Error 0x2efd, Could not complete the operation due to error 00002efd

ε祈祈猫儿з 提交于 2020-02-03 03:19:27
问题 I have a single page html and Angularjs file. App.js angular .module('vod', []) .controller('moviesController', ['$http', function ($http) { var self = this; self.movies = []; $http.get('http://localhost:8080/movies/').then(function (response) { self.movies = response.data; }, function (errResponse) { console.error('Error while fetching movies'); }); }]); HTML <!DOCTYPE html> <html> <head> <title>Angular</title> <script src="angular.min.js"></script> <script src="app.js"></script> </head>

IE 11 and IE Edge get file.type failed

社会主义新天地 提交于 2020-02-02 01:19:33
问题 "change .btn-file :file" : "getfileinfo", getfileinfo: function(e){ var fileInput = document.getElementById('fileupload'); var file = fileInput.files[0]; if(!file || (file.type != 'text/plain' && file.type != 'text/csv' && file.type != 'application/csv' && file.type != 'application/vnd.ms-excel' && file.type != 'text/csv')){ $('.alert-file').show(); $('.alert-file').delay(4000).fadeOut('slow'); return false; } var reader = new FileReader(); reader.onload = function(e) { $('#fileData').val

Microsoft Edge Flexbox padding behavior

╄→尐↘猪︶ㄣ 提交于 2020-01-25 01:22:24
问题 I just completed this website: http://groepsmanager-rspo.com. It renders perfectly in modern browsers such as Chrome 47 and Internet Explorer 11. In Microsoft Edge, the 5% padding-top and padding-bottom are ignored. display:flex has been applied to the divs in question, and they have a percentage padding-top and padding-bottom. @media only screen and (min-width: 768px) { .row { display: flex; } .twothird, .threethird, .onethird, .onehalf, .onefourth, .threefourth, .twofourth { padding: 5%; //

Unable to open Edge in InPrivate mode using selenium web driver

筅森魡賤 提交于 2020-01-24 21:30:17
问题 From the C# object model, it looks like this should do the trick, but the UseInPrivateBrowsing property has no effect at my end. Just opens a regular browser session in the edge. var options = new EdgeOptions(); options.UseInPrivateBrowsing = true; var driver = new EdgeDriver(options); I am using the latest Selenium.WebDriver.MicrosoftDriver. These are the installed packages: <?xml version="1.0" encoding="utf-8"?> <packages> <package id="NUnit" version="3.10.1" targetFramework="net47" />

Unable to open Edge in InPrivate mode using selenium web driver

时间秒杀一切 提交于 2020-01-24 21:29:04
问题 From the C# object model, it looks like this should do the trick, but the UseInPrivateBrowsing property has no effect at my end. Just opens a regular browser session in the edge. var options = new EdgeOptions(); options.UseInPrivateBrowsing = true; var driver = new EdgeDriver(options); I am using the latest Selenium.WebDriver.MicrosoftDriver. These are the installed packages: <?xml version="1.0" encoding="utf-8"?> <packages> <package id="NUnit" version="3.10.1" targetFramework="net47" />

Eval function execution leads to internal error

让人想犯罪 __ 提交于 2020-01-24 17:57:09
问题 I am doing analysis of our application with IE Edge browser, while doing so I found a strange behaviour. Execution of eval function leads to the below error. Even tried sample one like: eval("2"); Error: SCRIPT51: Internal error Please help me overcome this problem, in other browsers I am not facing this issue. 回答1: I'm afraid that this seems to be a browser issue of IE Edge. You can't do anything to work around this issue except of getting rid of all your eval calls. Since your application