microsoft-edge

Unable to get property 'sendMessage' of undefined or null reference

假装没事ソ 提交于 2021-01-07 02:49:06
问题 While trying to use browser.runtime.sendmessage(object) function above error occurs. Runtime API is not available and I see that web runtime API is available on a web page. This error occurs in Microsoft Edge and not in other browsers in content scripts. 来源: https://stackoverflow.com/questions/64608103/unable-to-get-property-sendmessage-of-undefined-or-null-reference

Problem with Angular website on Edge only: SCRIPT5022 expected identifier string or number

﹥>﹥吖頭↗ 提交于 2021-01-04 07:33:25
问题 We just launched our website but I'm facing a problem on Edge. I can't figure out where the error is coming from, I made sure there is no rest syntax in any script. This is our website: https://bubblydoo.be/nl If you have other feedback regarding the website, you can definitely let me know! 回答1: The problem was that some modules, including picomatch, were not transpiled to ES5, and webpack doesn't transpile any node_modules, it just takes them as is. Picomatch was included by an internal

WinUI 3.0 - Why UWP project is asking for MS Edge for Business for WebView2

拟墨画扇 提交于 2021-01-04 05:53:18
问题 When I use WebView2 control in a UWP project with WinUI 3.0 and run the app, the webpage inside WebView2 control is not displayed. Instead, the app displays the following message that takes me to Microsoft Edge for Business download page: a suitable version of Microsoft edge was not detected. Please install the latest beta channel build from here Question : Why it's asking for Microsoft Edge for Business? I already have the latest version of MS Edge Canary Channel and the latest release

WinUI 3.0 - Why UWP project is asking for MS Edge for Business for WebView2

此生再无相见时 提交于 2021-01-04 05:49:41
问题 When I use WebView2 control in a UWP project with WinUI 3.0 and run the app, the webpage inside WebView2 control is not displayed. Instead, the app displays the following message that takes me to Microsoft Edge for Business download page: a suitable version of Microsoft edge was not detected. Please install the latest beta channel build from here Question : Why it's asking for Microsoft Edge for Business? I already have the latest version of MS Edge Canary Channel and the latest release

C# Selenium testing with MS Edge driver

蹲街弑〆低调 提交于 2020-12-31 15:05:12
问题 I am using C#, Microsoft.VisualStudio.TestTools.UnitTesting and Selenium to test a website. I know MS Edge is no longer being developed, and is being replaced with a Chromium-based product. In the interim, I would still like to be able to tell my customers that Edge is a supported browser until the replacement occurs. But it looks like using the selenium EdgeDriver requires a valid microsoftwebdriver - and the latest one is not compatible with the latest version of Windows - my machine uses

How to restore session in Microsoft Edge

北慕城南 提交于 2020-12-28 19:45:32
问题 I am using Windows 10 operating system, and yesterday I have installed the latest update version 1511. Everything is working ok, except I lost all open tabs in Microsoft Edge browser. Is there any chance to recover them? If I go under: C:\Users\currentuser\AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Recovery\Active , I can see there is a Recovery Store file(.dat), which should be (according to timestamp) the right one for me. But I don't know how

How to restore session in Microsoft Edge

懵懂的女人 提交于 2020-12-28 19:40:50
问题 I am using Windows 10 operating system, and yesterday I have installed the latest update version 1511. Everything is working ok, except I lost all open tabs in Microsoft Edge browser. Is there any chance to recover them? If I go under: C:\Users\currentuser\AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Recovery\Active , I can see there is a Recovery Store file(.dat), which should be (according to timestamp) the right one for me. But I don't know how

How to restore session in Microsoft Edge

邮差的信 提交于 2020-12-28 19:38:30
问题 I am using Windows 10 operating system, and yesterday I have installed the latest update version 1511. Everything is working ok, except I lost all open tabs in Microsoft Edge browser. Is there any chance to recover them? If I go under: C:\Users\currentuser\AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Recovery\Active , I can see there is a Recovery Store file(.dat), which should be (according to timestamp) the right one for me. But I don't know how

I am using Microsoft Edge Chromium with Selenium and I keep on getting the msedge.exe as a startup item

时光总嘲笑我的痴心妄想 提交于 2020-12-27 06:35:31
问题 This is the code I used for using Selenium with Microsoft Edge Chromium browser: from selenium.webdriver.edge.options import Options from selenium.webdriver.edge.service import Service from selenium.webdriver.edge.webdriver import WebDriver driveroptions = Options() driveroptions.use_chromium = True driveroptions.add_argument('--start-maximized') driveroptions.binary_location = "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" service = Service(executable_path="msedgedriver.exe")

Change default download location on Edge chromium

无人久伴 提交于 2020-12-26 12:13:03
问题 I would like to ask if someone has tried to change the default download location on Microsoft Edge Chromium driver using selenium 3.X. On Chrome browser, we could use something like this HashMap<String, Object> chromePrefs = new HashMap<String, Object>(); chromePrefs.put("download.default_directory", savePAth); chromePrefs.put("prompt_for_download", false); options.setExperimentalOption("prefs", chromePrefs); Info: Microsoft Edge Browser version: 80.0.361.66 (Official build) (64-bit) Thanks