72,162 questions
Advice
0
votes
0
replies
45
views
Is there a way to intercept `beacon` requests and `service-worker.js` downloads with puppeteer?
I have set up an interceptor to enrich my requests headers before they reach one of my proxies, but I have the following issue:
When looking at the proxy logs, I see that the request to download the ...
-5
votes
0
answers
50
views
How to prevent Chrome to route through Google [closed]
On my last flight, connecting to the airplane Wi-Fi with my Android phone failed, because Chrome always tried to reach google.com.
How do I prevent this routeing?
(Doing the same with my iPad worked.)
0
votes
1
answer
89
views
Google chrome styling issues with developer extension popups
Problem:
I have been trying to create my own pop-up for a Google Chrome extension that I have been working on. I have barely started, and have already come across an issue with the styling of the pop-...
-1
votes
0
answers
68
views
How can I reliably attach to the correct active tab when connecting to Android Chrome via CDP? [closed]
I am using Playwright (C#) to automate login on Android Chrome via ADB and CDP (ConnectOverCDPAsync).
Chrome launches correctly on the device, remote debugging is enabled, and the target URL loads ...
-1
votes
0
answers
42
views
PDF anchor text links not working in Chrome due to Adobe Acrobat extension
I'm converting html documents to PDF using Chrome's Print To PDF function. I'm trying to link to specific pieces of text.
This is my html:
<html>
<body>
<section id="section-...
2
votes
2
answers
102
views
Chrome issue: absolute element, in inline-flex, with offscreen clip-path, is not visible when scrolled to
I have the following test code, where I have several divs in an inline-flex element. The last div contains some "secret" text. The text should not scroll, so its position is absolute. The ...
0
votes
0
answers
44
views
Chrome for iOS: Google OAuth "use another account" flow loops back to sign-in instead of completing authentication
I'm implementing Google OAuth in a Node.js/Express app. Standard sign-in (selecting an already-listed Google account) works correctly. But when a user taps "Use another account" on the ...
0
votes
1
answer
55
views
Android google chrome give strange values on innerWidht/Height upon rotation and canvas resizing
I get strange values of the innerWidth and innerHeight on my android device, using chrome.
The minimal code below exposes it.
<canvas id="canvas"></canvas>
window.onresize = ...
Advice
1
vote
4
replies
78
views
Why can’t JavaScript reliably switch the browser’s built-in spellcheck languagein Chrome/Edge?
I’m building a multilingual web app where users often switch between English (en-GB) and Portuguese (pt-PT) while typing in the same session.
I can enable spellcheck with spellcheck="true", ...
Tooling
0
votes
0
replies
57
views
Prevent Windows App (Web) from opening corporate VM in a new Chrome tab on Linux
I'm using Chrome web apps on Ubuntu 24.04 to access my corporate virtual machine, which uses Windows App (Windows cloud) as its tool.
However, once inside the Chrome web app 'Windows App', when I ...
Advice
0
votes
8
replies
106
views
Can I change the contents of the link I send to people?
Not sure if I was able to word it well but, I'm sending a link to people that have my personal details in the website if they click on it. Can I make it so they access a version of the website without ...
1
vote
2
answers
296
views
Selenium WebDriver receiving updates faster than Chrome
I've ran into this issue twice now where Selenium WebDriver updates, requiring a new version of Chrome, but Chrome can't detect a new version yet. The first time I experienced this, it took Chrome 15 ...
5
votes
1
answer
172
views
Basic Auth credentials ignored in Chrome after the first auth attempt
I've been debugging for several hours an issue with one of my web applications that actually seems to be browser-dependent.
The issue was that if a user logged in with the "wrong" ...
0
votes
0
answers
73
views
decodeImageFromPixels per frame for shader pipeline in Flutter causes frame drops; better way to feed fragment shader?
I have 2 rendering paths:
Pixel mode: draw indexed pixels via CustomPainter
Filter mode (CRT/LCD): convert frame buffer to BGRA bytes and call ui.decodeImageFromPixels, then pass ui.Image to a ...
1
vote
0
answers
65
views
Flutter game loop with Timer.periodic(16ms) has unstable frame pacing and low FPS on Android emulator/Web
I have a simple engine loop in Flutter driven by Timer.periodic(const Duration(milliseconds: 16)).
Even with a small fixed internal resolution, reported FPS can be very unstable and performance is ...