microsoft-edge

Disable input text suggestions in Edge?

核能气质少年 提交于 2020-04-09 05:02:23
问题 I have built a textbox dropdown AngularJS component which works great in Chrome, Firefox, Safari and Internet Explorer. A feature of this component is that you type in a string, and then can use the up/down arrow keys to scroll through suggestions. In Microsoft Edge, as soon as you hit the down arrow, the following text is added to the input box: briefly explain your changes (corrected spelling, fixed grammar, improved formatting) Is there anything I can do client side to stop this from

Disable input text suggestions in Edge?

限于喜欢 提交于 2020-04-09 05:01:07
问题 I have built a textbox dropdown AngularJS component which works great in Chrome, Firefox, Safari and Internet Explorer. A feature of this component is that you type in a string, and then can use the up/down arrow keys to scroll through suggestions. In Microsoft Edge, as soon as you hit the down arrow, the following text is added to the input box: briefly explain your changes (corrected spelling, fixed grammar, improved formatting) Is there anything I can do client side to stop this from

Microsoft Edge WebDriver- Unable to use default app data profile for Automation - Edge Ver 80

五迷三道 提交于 2020-04-07 08:27:10
问题 I have to use existing user login session, we will require EDGE user profile, as we observed EDGE driver doesn't use the existing user data profile it is creating a new profile every time EDGE Default Profile Path C:\Users\edge2automation\AppData\Local\Microsoft\Edge\User Data\Default (Edge driver) path - C:\Users\edge2automation\AppData\Local\Temp\scoped_dir64860_1277252271\Default 回答1: As the new Edge is based on Chromium, we can refer to the solution of using Chrome profile and change the

How to start Microsoft Edge in InPrivate mode from command line [closed]

◇◆丶佛笑我妖孽 提交于 2020-03-20 06:33:04
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I have searched a lot to open Microsoft Edge in InPrivate mode. I could not find out the solution. How to start Microsoft Edge in InPrivate mode from command line? 回答1: User ウィンドウズスクリプトプログラマ over on the Microsoft Scripting Forum gave this command line: cmd.exe /c start shell:AppsFolder\Microsoft.MicrosoftEdge

Is it possible to use Microsoft Edge (Chromium engine) in Delphi like TWebBrowser?

江枫思渺然 提交于 2020-03-19 03:47:07
问题 Microsoft announce new browser Edge browser based on chromium engine. Just wondering if it is possible embed the browser like TWebBrowser into a VCL application? 回答1: At present, Microsoft developer is developing a Microsoft Edge WebView2 control, it enables you to host web content in your application using Microsoft Edge (Chromium) as the rendering engine. More detail information, see this article. You could feedback your request at the bottom of this link. 来源: https://stackoverflow.com

Internet Explorer/Edge (not chromium) add additional SameSite=Lax when SameSite=None Secure

倾然丶 夕夏残阳落幕 提交于 2020-03-15 07:34:11
问题 I have .NET MVC application loaded in iframe in Microsoft Dynamics page. Initially the user will open the home page. The home controller redirects to the login page: return RedirectToAction("Index", "Login", new { returnUrl = redirectURL, error = errorMessage }); This was OK before this update KB4533002 Cumulative Update for .NET adding SameSite=Lax when SameSite is None or not specified. Then I added outbound rules in the web config to send SameSite=None; Secure . <rewrite> <outboundRules>

Play WAV audio file in Edge with Angular/Javascript

微笑、不失礼 提交于 2020-03-05 00:38:39
问题 I have following code in Angular to playback a uploaded WAV file: <input #fileImportInput (change)="fileChangeListener($event)" /> <audio #myAudio controls controlsList="nodownload"> <source src="" /> </audio> audioElement: HTMLAudioElement; @ViewChild('myAudio', { static: true }) myAudio: any; ngOnInit() { this.audioElement = this.myAudio.nativeElement; } fileChangeListener(files: any): void { const inputFile = files.target.files[0]; if (window.URL && window.URL.createObjectURL) { this

Play WAV audio file in Edge with Angular/Javascript

▼魔方 西西 提交于 2020-03-05 00:34:49
问题 I have following code in Angular to playback a uploaded WAV file: <input #fileImportInput (change)="fileChangeListener($event)" /> <audio #myAudio controls controlsList="nodownload"> <source src="" /> </audio> audioElement: HTMLAudioElement; @ViewChild('myAudio', { static: true }) myAudio: any; ngOnInit() { this.audioElement = this.myAudio.nativeElement; } fileChangeListener(files: any): void { const inputFile = files.target.files[0]; if (window.URL && window.URL.createObjectURL) { this

Play WAV audio file in Edge with Angular/Javascript

拥有回忆 提交于 2020-03-05 00:33:13
问题 I have following code in Angular to playback a uploaded WAV file: <input #fileImportInput (change)="fileChangeListener($event)" /> <audio #myAudio controls controlsList="nodownload"> <source src="" /> </audio> audioElement: HTMLAudioElement; @ViewChild('myAudio', { static: true }) myAudio: any; ngOnInit() { this.audioElement = this.myAudio.nativeElement; } fileChangeListener(files: any): void { const inputFile = files.target.files[0]; if (window.URL && window.URL.createObjectURL) { this

CSS keyframe animation not working as intended in IE and Edge

天大地大妈咪最大 提交于 2020-03-01 15:35:46
问题 I made this animation and it's working like a charm in every browser but IE and Edge. You can see the page here https://jsfiddle.net/03ddygdx/ .progress-container { position: relative; } .background-progress-bar, .progress-bar { width: 100%; height: 10px; top: 0px; left: 0px; position: absolute; } .background-progress-bar { background-color: pink; z-index: 8; } .progress-bar { background-color: red; z-index: 9; } .indeterminate { animation: indeterminate 2.5s infinite linear; } @keyframes