microsoft-edge

Disabled textbox on Microsoft Edge is not selectable

烈酒焚心 提交于 2021-01-29 09:49:50
问题 In my webpage, I need a disabled textbox to show content (very long). <input disabled type="text" value="a very long long long text..."> In Chrome, we can select the text in the disabled input to scroll to view all content. However, In MS Edge, it seems that the disabled textbox is not selectable, therefore, it cannot be scrolled to view entire content. Is there anyway to customize CSS to select text on disabled textbox on Ms Edge. 回答1: Actually content is selectable from disabled textbox in

Vue JS render error on IE / Microsoft Edge

ぃ、小莉子 提交于 2021-01-29 09:43:52
问题 The page is loading correctly on every browser except IE 11 and Microsoft Edge. The only error that i can see is "SCRIPT1028: SCRIPT1028: Expected identifier, string or number chunk-vendors.8615b873.js (1407,41419)". The code: this.form.addEventListener("submit",async e=>{ try{ this.$emit("loading",!0),e.preventDefault(); const{ ,error:n }=await this.$stripe.createToken({...this.card,amount:1e3}); 回答1: Does the error point to the line using { ...obj } object rest/spread properties? The syntax

C# visual studio selenium for edge OS version18362

大憨熊 提交于 2021-01-29 08:38:18
问题 I am beginner of learning C# selenium using visual studio 2015. I want to test a random website using edge browser. With the use of NuGet, I have installed selenium support (latest version)v3.141.0, selenium webdriver (latest version)v3.141.0 and selenium microsoft webdriver (latest version)v17.17134.0. However, the OS version on my laptop (latest window 10) is 18362 which is not available to download on official webdriver website. The following code works well in chrome, IE, and firefox, but

CSRF issue with Microsoft Edge and IE11

混江龙づ霸主 提交于 2021-01-28 19:01:10
问题 I have a CSRF token issue that only occurs in MS Edge and IE11 - it works fine in Chrome, Firefox and even IE9. The problem only occurs when doing Http post via Ajax. It gives me Http403 forbidden error. I have followed the guide in Django here: https://docs.djangoproject.com/en/1.7/ref/contrib/csrf/ Do I need to add some extra headers for IE11 / MS Edge? Has anyone else encountered this problem? 回答1: 2 hours later, and I found the answer myself... To those who might have the same issue with

Selenium with Edge: A exception with a `null` response [duplicate]

我的未来我决定 提交于 2021-01-28 11:52:59
问题 This question already has answers here : Selenium with Microsoft Edge driver never finishes initialising (2 answers) Closed 1 year ago . I have a problem with using Selenium with Edge. I use .NET Core 3.0. This is my simple test: [Fact] public void EdgeDriverTest1() { using (IWebDriver driver = new EdgeDriver()) { driver.Navigate().GoToUrl("http://www.google.com"); IWebElement element = driver.FindElement(By.Name("q")); element.SendKeys("Hello, Selenium WebDriver!"); element.Submit(); } }

CSS mask-image with linear gradient not working in Edge

生来就可爱ヽ(ⅴ<●) 提交于 2021-01-28 02:06:15
问题 Caniuse.com says that Edge has full support for mask-image but the following code is working in all browsers for me except Edge. width: 200px; height: 200px; background: red; mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); This should produce a simple red box which is red a the top and transparent at the bottom. Tested in Chrome and Firefox with no problems. So, is it just incompatible with linear-gradient? I have scoured the web but can't find an answer. 回答1: Here

Why does the box-shadow property not apply to a <tr> but directly to <td> elements in Edge?

China☆狼群 提交于 2021-01-27 14:43:08
问题 When adding box-shadow to a <tr> , Firefox and Chrome both show it around the entire row, while Edge directly applies it to each <td> which ends up looking like grid rather than a continuous row. Here is a demo of the behaviour: table tr { box-shadow: 0 0 0 1px red inset; } <table> <tr> <td>hello</td> <td>world</td> </tr> </table> And here are screenshots: How it looks in Firefox How it looks in Chrome How it looks in Edge So it seems like Edge is directly applying the given style to the <td>

Headless Edge driven through Selenium by C#

人走茶凉 提交于 2021-01-27 13:43:49
问题 Given that Selenium can drive the Edge browser for programming automated testing in C#, as noted in this article: https://blogs.windows.com/msedgedev/2015/07/23/bringing-automated-testing-to-microsoft-edge-through-webdriver/ Is it possible to run it in headless mode? If so, how? 回答1: As noted by @Tewr , no: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/14057655/ but the feature can be requested: https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer

Is there WinForms control for Chromium-Edge HTML renderer?

半世苍凉 提交于 2021-01-21 09:08:29
问题 Microsoft has recently released Edge browser which uses Chromium engine to render HTML. Is there a WinForms component which allows to embed it in a desktop application? I'm aware of CefSharp for WinForms, just looking if there's something supported natively. 回答1: WebView2 - Developer Preview The Microsoft Edge WebView2 control which is currently in developer preview enables you to host web content in your application using Microsoft Edge (Chromium) as the rendering engine. The developer

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

喜你入骨 提交于 2021-01-07 02:50:04
问题 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