Questions tagged [microsoft-edge-chromium]

76 questions
7
votes
3 answers

How to stop Edge Chromium from showing 'Restore Pages' Pop Up

How to stop Edge Chromium version 94.0 from showing 'Restore Pages' Pop Up
John Daly
  • 201
  • 1
  • 3
  • 8
5
votes
2 answers

local file:// links in chrome or edge

Having file:// links within a website e.g. http://localhost will not open because of security reason. In IE and Firefox it's possible to allow such access either in the "Trusted Sites" & "Local Intranet" from IE or to configure a policy in…
4
votes
3 answers

How to check if window is minimized with Edge Selenium webdriver in Powershell

One would think that this should be an easy thing to do, but I cannot find a way to detect whether the Chromium Edge Selenium webdriver Window is minimized or not in Powershell. Specifically, the size and position of a Window seems to be the same…
4
votes
3 answers

Google Chrome/MS Edge version 87 affecting iFrames from being viewable?

Chrome 87 and Microsoft Edge 87 updated on my computer today and now I'm seeing odd behavior when trying to view web pages embedded within our intranet through iFrames. The embedded web pages are https secured and were working totally fine on Chrome…
3
votes
1 answer

Microsoft Edge Chromium: How to use "Install this site as an app" (PWA) via PowerShell / Command Prompt

is there any opportunity to use the very interesting "Install this site as an app" feature of the new Microsoft Edge Chromium Web Browser via PowerShell or Command Prompt? This would be very satisfying since one could run a script-based…
2
votes
0 answers

Problem with building Chromium for Windows on Mac host

I am trying to cross build chromium on mac host. I have followed the instructions from https://chromium.googlesource.com/chromium/src.git/+/HEAD/docs/win_cross.md and everything seems fine. But when I run autoninja -C out/win chrome I face with the…
Hetero
  • 39
  • 2
2
votes
1 answer

Browser autofill suggestion box overlapping floating label input field

I have a form design with a floating label and an issue with Edge and Chrome autofill suggestion box. After a click on the input field, it moves down 30px (margin-top) to make place for the label. The issue is that the autofill suggestion select box…
Samuel Gfeller
  • 840
  • 9
  • 19
2
votes
1 answer

Can you disable the restore pages pop up on Microsoft Edge-chromium?

Can you disable the restore pages pop up on Microsoft Edge-Chromium?
John Daly
  • 201
  • 1
  • 3
  • 8
2
votes
1 answer

Proper debug configuration for VSCode using Parcel and Edge Chromium

It seems that the standard launch configuration options don't work when launching Parcel & Edge Chromium. With launch mode, the browser opens a new instance of Chromium that loses all of the extension settings, while the attach mode just refuses to…
James Gentes
  • 7,528
  • 7
  • 44
  • 64
2
votes
0 answers

PKI Certificate authentication using Selenium webdriver for test automation in python

I have UI application which for which I had build Test Automation Framework using Selenium Python Pytest Framework. When I launch web application, a pop window appears where I have to select valid PKI Test Certificate, after which only the…
2
votes
1 answer

What "magic" causes "cnn.com" when typed in IE11 to automatically launch Edge (Chromium)?

I just noticed that when I typed in "cnn.com" into the IE11 address bar (Windows 10), that it automatically launched the website in Edge (Chromium) instead, then rendered this bar at the top of the site in Edge. (it also looked like if this was the…
scunliffe
  • 62,582
  • 25
  • 126
  • 161
2
votes
0 answers

Delaying execution of page scripts until the extension completes asynchronous initialization through content scripts

Is it possible to delay or stop the loading, parsing, and execution of web page JavaScripts until the extension fetches the saved settings from chrome.storage and performs initial setup? Even though, the content script is set to "run_at":…
1
vote
0 answers

How to use a blocking request listener with manifest v3?

I am having trouble migrating my manifest v2 to v3. Basically, my extension is downloading some files when a specific url pattern is matched. I've migrated my old manifest to this: "permissions": [ "webRequest", "downloads", …
1
vote
0 answers

Cannot right click on an element from Dev Tools after opening a div element

I am facing a critical situation regarding my option to right-click on an element from Dev Tools. At some point, the application refuses to allow the action of right-clicking on any element from the Elements tab after inspecting something from the…
1
vote
1 answer

Basic Error while web scraping using Selenium and Edge with Python

Code trials: !pip install selenium from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from…
1
2 3 4 5 6