microsoft-edge

How to open MS Edge with specific profile with selenium webDriver?

最后都变了- 提交于 2021-02-11 12:32:23
问题 I am running automation on the edge browser. Edge browser supports profile and whenever i launch the edge from webdriver, it create new profile. Is there any way I can set the option to launch edge with given user profile ? 回答1: I use Java language as an example. You could use user-data-dir and profile-directory to use specific profile to launch Edge with Selenium. The sample code is like below: System.setProperty("webdriver.edge.driver", "your\\path\\to\\edge\\webdriver\\msedgedriver.exe");

Installing specific version of legacy Edge browser

爱⌒轻易说出口 提交于 2021-02-11 12:28:00
问题 I am looking forward to installing a specific version of the Microsoft Edge browser (44.17763.1.0). Any idea where I can find this specific version? 回答1: The legacy version of Edge browser is dependent on the windows build version. As far as I know, the Windows 1809 OS installed the Edge 44.17763 version. You could try to use this version of Windows OS. 来源: https://stackoverflow.com/questions/61267283/installing-specific-version-of-legacy-edge-browser

Django CSRF_TOKEN issue with Edge only

半城伤御伤魂 提交于 2021-02-10 15:47:07
问题 I'm trying my django application through different browsers (Chrome, Firefox, IE11 and Edge) and I got an issue with the csrf_token and Edge only. This issue is in reference with my django form. My view file : class ManageDocView(AdminRequiredMixin, View): """ Render the Admin Manage documents to update year in the filename""" template_name = 'omcl/manage_doc_form.html' form_class = ManageDocForm success_url = 'omcl/manage_doc_form.html' @staticmethod def get_title(): return 'Change Document

LinkedIn Share button doesn't work in Microsoft Edge

会有一股神秘感。 提交于 2021-02-10 13:57:53
问题 My website has a LinkedIn Share button at the top. This seems to be working fine in Chrome, Firefox, & IE. With Edge, however, we get this ugly error message: I used the Share Plugin Generator on LinkedIn's developer portal which generated this script: <script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US</script> <script type="IN/Share" data-url="https://www.aoccorp.com"></script> Why is this not working in Edge while it works in the other browsers? Thanks, Steve

SVG animation is not working in Edge or IE

穿精又带淫゛_ 提交于 2021-02-10 06:34:05
问题 I have a checkmark SVG animation that works in Safari, Chrome, Firefox, etc but does not work in Edge and IE (surprise surprise). It seems as if the SVG is there but the strokes are not displaying. As far as I can tell both Edge and IE11 support what I am trying to do and I've used every prefix I can think of. CSS/HTML: .checkmark { position: relative; left: 50px; z-index: 1; opacity: 1; width: 22px; border-radius: 50%; display: inline; stroke-width: 6; stroke: #fff; stroke-miterlimit: 10;

Edge 15 throws error when using 'for … of' on a NodeList

依然范特西╮ 提交于 2021-02-10 04:02:47
问题 When looking at the ECMAScript compatibility table, it says that Edge 15 and Edge 16 support for ... of loops. However, when I run this code: const list = document.querySelectorAll('[data-test]'); console.log(list); for (const item of list) { console.log(item); } <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> It works in Chrome and Firefox, but not in Edge. Instead it says: Object doesn't support property or method 'Symbol

Edge 15 throws error when using 'for … of' on a NodeList

旧巷老猫 提交于 2021-02-10 04:00:38
问题 When looking at the ECMAScript compatibility table, it says that Edge 15 and Edge 16 support for ... of loops. However, when I run this code: const list = document.querySelectorAll('[data-test]'); console.log(list); for (const item of list) { console.log(item); } <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> It works in Chrome and Firefox, but not in Edge. Instead it says: Object doesn't support property or method 'Symbol

Edge 15 throws error when using 'for … of' on a NodeList

你。 提交于 2021-02-10 04:00:29
问题 When looking at the ECMAScript compatibility table, it says that Edge 15 and Edge 16 support for ... of loops. However, when I run this code: const list = document.querySelectorAll('[data-test]'); console.log(list); for (const item of list) { console.log(item); } <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> It works in Chrome and Firefox, but not in Edge. Instead it says: Object doesn't support property or method 'Symbol

Edge 15 throws error when using 'for … of' on a NodeList

与世无争的帅哥 提交于 2021-02-10 03:59:26
问题 When looking at the ECMAScript compatibility table, it says that Edge 15 and Edge 16 support for ... of loops. However, when I run this code: const list = document.querySelectorAll('[data-test]'); console.log(list); for (const item of list) { console.log(item); } <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> <div data-test></div> It works in Chrome and Firefox, but not in Edge. Instead it says: Object doesn't support property or method 'Symbol

Microsoft Edge requesting new page on back/forward button

丶灬走出姿态 提交于 2021-02-09 09:21:05
问题 The latest version of the Microsoft Edge browser (41.162...) requests a new page when the back and forward buttons are clicked. I've tested multiple browsers on multiple platforms and only Edge exhibits this behavior. Here's a test page that displays the timestamp the page was created. Click the "Next Page" link and then use the back and forward buttons. Notice that the timestamp is different each time for Edge but not other browsers. The previous version of Edge did not request a new page