4,384 questions
-4
votes
0
answers
40
views
Assistance Required: Implementing Partitioned Pop-ins in Chrome (v138.0.7204.168) [closed]
I am currently testing on Chrome Version 138.0.7204.168 (Official Build) (64-bit) and working on implementing the Partitioned Pop-ins solution as outlined in the Privacy Sandbox developer trial.
We ...
1
vote
0
answers
51
views
How to modify the Chrome source code to make all windows default to launching the mobile device simulation upon startup
I hope that by modifying the Chrome source code, it will be possible to enable the mobile device simulation for all open windows without starting the debugging console (CDP).
src\content\browser\...
0
votes
0
answers
13
views
Not getting results from dump_wasm_module/dump_wasm_module_path flags in Chromium Browsers
I am using the following the dump_wasm_module and dump_wasm_module_path flags in Selenium to try and dump the text representation of wasm modules (WAT) to disk. Here is how I use them:
chrome_options....
0
votes
2
answers
44
views
Build failure in offline mode due to missing afdo.prof profile in Chromium build
I'm compiling chromium. The compilation workchain I am using runs this command
/third_party/depot_tools/autoninja.py -C out/Release_arm64 monochrome_public_bundle
However when I compile, the error ...
0
votes
1
answer
25
views
Disabling Chrome Flags via Command Line: Not Working
Our cloud contact center platform is being negatively impacted by the chromium flag "allow webrtc to adjust the input volume." (
Manually disabling it works, but we have ~550 users and I ...
0
votes
1
answer
57
views
JS execution slower in built chromium binary compared to downloaded chromium binary
I am using puppeteer to run a bunch of JS to process HTML files in headless chromium. I noticed that when I use the Chromium binary downloaded from https://storage.googleapis.com/chromium-browser-...
0
votes
0
answers
17
views
How to use chromium extension shortcut to fill system clipboard?
I wrote simple chromium extension where I define command with keyboard shortcut:
"commands": {
"copy-to-clipboard": {
"suggested_key": {
"default&...
0
votes
0
answers
18
views
why doesn't _NET_ACTIVE_WINDOW return chromium main window on Ubuntu
I am building chromium from source codes on Ubuntu. I have a script running "xprop -root _NET_ACTIVE_WINDOW" periodically in background. When I run built chromium xprop prints 0 as window id,...
1
vote
1
answer
128
views
ERR_UPLOAD_FILE_CHANGED and NotReadableError when selecting image from Android Gallery in Chrome
I'm working on a React web application that allows users to upload image files using an <input type="file" /> element. Everything works perfectly on desktop browsers, and even on many ...
2
votes
2
answers
98
views
Error generating Mermaid diagrams with Asciidoctor-pdf and asciidoctor-diagrams
I have the following step definition in my GitHub workflow
- name: Convert AsciiDoc to PDF
run: |
set -o pipefail
OUTPUT=$(asciidoctor-pdf -r asciidoctor-diagram -a ...
0
votes
1
answer
108
views
Prevent password menu Python No driver
How can I prevent the password menu from showing in No Driver Python? It doesn't show in incognito mode, but I don't want this. I also don't want to use a Chrome profile.
args = [
f"--window-...
0
votes
1
answer
58
views
Is there a workaround for Chromium's broken getImageData() implementation?
The below problem occurs only in Chromium browsers but the same functionality works fine in Firefox: It seems that Chromium by default turns every load of an originally lossless image format (e.g. ....
0
votes
0
answers
50
views
Chromium proxy authentication with webRequest.onAuthRequired extension not working (MV3)
I'm trying to open Chromium in headfull mode on my Linux machine using a custom extension to handle authenticated proxy servers. Despite configuring the webRequest.onAuthRequired listener in my ...
1
vote
0
answers
289
views
"Java object is gone" error on Android System Webview
i observe a large increase of "Java object is gone" error recently from less than 10 a day to 50-150+ a day since 29 April 2025.
It seems to only affect Facebook and Instagram in-app browser ...
0
votes
1
answer
205
views
Selenium Chrome driver headless mode suddenly not working
A problem has popped up last week which is confusing us all. We use ChromiumDriver for our Windows Desktop tests
protected static ChromiumDriver? Driver { get; set; } = null;
We are also ...