4,364 questions
1
vote
1
answer
407
views
How to Enable WebRTC H.265 Support in Android WebView
I checked Google's official Chromium documentation, and it mentions that H.265 support in WebRTC is currently in development. It has been released under 'Implemented behind flags' status: Chromium ...
0
votes
0
answers
81
views
In Chromium browser, PDF page load is failing with error : Unknown Extension API - mimeHandlerPrivate.getStreamInfo
We are upgrading the chromium browser from 118.0.5993.117 to 126.0.6478.126 for our embedded system. For PDF extension, we are migrating the PDF feature from chrome/browser to content/shell where the ...
0
votes
1
answer
61
views
Python Script will not run in crontab -e and script has errors Missing X server or $DISPLAY
I have a Raspberry Pi 4 that I use at different locations to run a digital display. I use this script to run at reboot so that I don't have to determine the IP address each time and just start ...
0
votes
0
answers
53
views
Why is the getBrowserStoreParams111 Function Initialized Twice in the Same Process and Thread?
common.h
static int getBrowserStoreParams111(int type);
common.cc
int Common::getBrowserStoreParams111(int type) {
static int store_param = [type] {
int result = type;
std::cout <<...
0
votes
2
answers
347
views
Japanese Characters Not Rendering in PDF on Vercel Using Puppeteer-core and @sparticuz/chromium-min
I am trying to generate a PDF on Vercel using Puppeteer-core, @sparticuz/chromium-min, and Next.js, but Japanese characters do not appear at all in the generated PDF. Only English characters are ...
0
votes
1
answer
80
views
Puppeteer executing the first click action in an array immediately, regardless of delay
I'm facing a seriously weird issue with puppeteer, running on Chrome.
I have an array of click actions I want to execute on a webpage, which has a pdf.js based slideshow. Each action consists of ...
0
votes
0
answers
33
views
Is is possible to run the loading process for an unpacked extension in Chromium in verbose or debug mode?
Is there a way to run Chromium's unpacked extension loading process in some kind of debugging or verbose mode, so I can get some specific insights into what is actually going wrong with the rules.json ...
0
votes
0
answers
28
views
Location of Chrome Preferences in its code base
I've been trying to collate a master list of preferences of the google chrome browser that I can use for my automation. I've been trying to go through it's codebase and identify the path of the master ...
3
votes
2
answers
950
views
Chrome & Edge v133 Causing Blank Page After Azure AD SSO Login and Page Reload in Angular App
Scenario:
In my Angular application, I am experiencing an issue during the SSO login process with Azure AD. After receiving a successful response from the backend containing the Azure AD authorization ...
0
votes
1
answer
172
views
The Chromium headless page is scaled, and the resolution is not as expected
I am using Selenium + Chromium headless for automated testing, and the execution environment has been encapsulated into a Docker image based on Debian. Through screenshots taken during the execution, ...
0
votes
0
answers
19
views
Chrome NetLog event types enum
I'm currently working on a project that is using these events to search for QUIC packets.
Let's take the example:
{"params":{"persistent_store":false},"phase":1,"...
0
votes
2
answers
64
views
Request.ServerVariables["remote_addr"] is not workin in Edge
I'm using ASP.NET 4.8.
Request.ServerVariables["remote_addr"] is not working in Chromium-based browsers like Edge and Chrome. However, the same code is working absolutely fine in Firefox.
...
0
votes
0
answers
62
views
Using VIDIOC_STREAMON and VIDIOC_QBUF
I'm facing the issue while testing hw accelirated decoding in Chromium. After some investigation I found out that at the start of decoding Chromuim calls VIDIOC_STREAMON ioctl first and the starts to ...
0
votes
0
answers
26
views
Electron/Chromium stops executing promises
I am banging my head against the wall trying to debug an inexplicable behavior in my codebase.
I am using Electron 27.3.11.
The following code is just the example I have isolated at the moment.
...
0
votes
0
answers
28
views
Access WebNFV on kotlin Webview
I need to access WebNFC on an embedded website in an kotlin android app in android studio.
For testing I used this page for embedding
https://googlechrome.github.io/samples/web-nfc/
Even tough I set ...
0
votes
1
answer
79
views
Is there a way to change the tab title in private mode? [closed]
I want to make a custom landing page for when I open a new private tab.
Manage to do it in normal tab with a custom extension:
{
"manifest_version": 3,
"name": "Black ...
0
votes
2
answers
10k
views
ChromeDriver Compatibility Issue: Matching Chrome Version 132 with ChromeDriver 114 in Docker
I'm experiencing an issue where ChromeDriver in my Docker container is failing to work with the installed Chromium browser, which is deployed n a GCE instance which runs on Debian. The error message ...
0
votes
0
answers
167
views
Error when trying to fetch the Chromium source code
When trying to fetch the Chromium source code, I'm getting this error in the command prompt:
________ running 'git -c core.deltaBaseCacheLimit=2g clone --no-checkout --progress https://chromium....
0
votes
0
answers
26
views
how can i load a custom error page on chromium?
I have a terminal with chromium-browser running, the whole system is on a raspberry pi 4b.
anyway, the gist of what I was trying to do in bashrc is:
ERROR_PAGE="file://$HOME/error.html"
...
0
votes
0
answers
47
views
Diffrent size of rendered HTML DOM elements on 4K and FHD screen
I'm working on a project and I've encountered a problem in Chrome. I have no idea why, but the inner height of rendered DOM element is slightly smaller on 4K screen than on the standard 1920x1080. ...
0
votes
1
answer
84
views
Is JavaScript code executed now by CPU instead of Interpreter?
Before the Sparkplug compiler, JS code was first converted into byte code and executed, all done by the Ignition Interpreter. The Sparkplug compiler nowadays will take the byte code generated by ...
0
votes
0
answers
24
views
why multi-HTMLCanvasElement.captureStream() cause my gpu memory Inflated?
Bt(this, Se, Ft(this, Ee).captureStream(0)),
Bt(this, Re, Ft(this, Ee)),
e.appendChild(Ft(this, Re));
const a = document.createElement("video");
a.style.width = "100%&...
0
votes
0
answers
36
views
python selenium chromedriver running on a large scale
I'm crawling a site with high JS and websocket load.
Using multythreading.
As soon as I run more than 15 simultaneous copies, my server (Ryzen 7 3700 8-core with 64Gb RAM) become unstable. CPU is used ...
1
vote
0
answers
119
views
Webauthn - Browser fails to recognize autocomplete attribute
I am using an input for users to log in using email or phone. However, recently added an initial support for passkeys. I want to use the Conditional UI so users are not bothered if no passkeys are ...
0
votes
0
answers
192
views
Puppeteer with browser context opens an extra window windows
How can I add cookies to the default browser window/context, without opening a new window/context? (all pages should share cookies from the context)
For some reason, puppeteer seems to open two ...