Chrome remote debugging utilises the chrome remote debugging interface to connections to a remotely running instance of Chrome and remote control of that instance. This can be used by test automation drivers like Selenium when interacting with Chrome.
Questions tagged [chrome-remote-debugging]
49 questions
1
vote
0 answers
Set cookie file as a flag when oppening chromium browser
Is it possible to use a cookie file when oppening a chromium browser. Now all data of browser is saved under directory set with user-data-dir flag. One of those things is also Cookies file. I would like to get all cookies, save them in a file and…

puppeteer701
- 1,225
- 3
- 17
- 33
0
votes
1 answer
Google Chrome Inspector on Remote Devices not working for Сhromecast
I have a tv box
Android Pie
chromecast built-in - 1.61.329909
Done:
Enabled developer mode on tv box
TV set-top box, android phone and laptop work in a common wi-fi network
I am using adb to connect to a device.
Commands:
adb tcpip 5555
daemon…

Алексей Обронов
- 1
- 1
0
votes
0 answers
show device preview in chrome remote debugger
I'm debubugging chrome on my android emulator with the chrome remote debugger and it works fine, but somehow I hided the left sidebar with the preview like here:
I couldn't find any setting and shortcut to show it again, can anyone help?

wendt88
- 544
- 5
- 22
0
votes
1 answer
Chrome/Edge Inspect not showing android APK on Mac M1
I was trying to run an APK on Android Studio Mac and inspect that on Edge/Chrome using the below method.
edge://inspect/#devices
But edge/Crhome doesn't show me the "Inspect" button with other details
I'm using a Mac M1 Android studio latest…

Raashid A.
- 65
- 10
0
votes
1 answer
Can I run Puppeteer with a standalone Chrome?
Because I'm running Puppeteer from a server where I need specific versions of Chrome I thought I would try to use only puppeteer-core. I mean, how specific is Puppeteer that it needs it own Chrome to work...?
So trying this with as minimal code as…

Espen
- 3,607
- 11
- 48
- 75
0
votes
1 answer
How to interact using Selenium with already opened browser?
Till a few days back what was working perfectly:
Open browser with:
"C:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe" --remote-debugging-port=9222
then in python I check the response status code (should be 200) using GET request…

Dr.PB
- 959
- 1
- 13
- 34
0
votes
1 answer
Is it possible to make a cordova app debuggable without recompiling?
I have an .apk file for an old version of an app but don't have the ability to rebuild the app from source using cordova. I'm trying to debug an error and would like to enable remote debugging. Is it possible to enable remote debugging of the…

Jack O'Neill
- 452
- 4
- 11
0
votes
1 answer
chrome-remote-interface socket hang up
I try to remote debug a WebView on android.
I already goth the process ID with this command adb shell grep -a webview_devtools_remote /proc/net/unixc
Then i made a port forwarding with this command forward tcp:9483…

Technik_Max
- 71
- 1
- 9
0
votes
1 answer
chrome remote interface ECONNREFUSED 127.0.0.1:9222
I am using Testcafe and it does not have direct support to access Chrome Dev Tools. My Aim is to cut the network so that I can see the error dialog in the website. This is the code that I have written. TestCafe opens at a different url
Here is the…

MukulCode
- 97
- 11
0
votes
1 answer
Chrome Remote Debugging - how to inspect elements in hybrid app (webview)
I am trying to automate Gmail app for Android. In the "Compose" page, the part of the body of the message is a webview context. Using uiautomatorviewer i managed to retrieve the locator of the "body" element, but sending text to it - fails. Trying…

Nisim Naim
- 151
- 1
- 15
0
votes
0 answers
How to stop remote debugging of Cordova App
I have a release version cordova application and trying to stop a chrome remote debugging. I have set setWebContentsDebuggingEnabled(false) on webview but still it cant stop remote debugging on chrome:inspect. It is very strange that I have an app…

user565
- 871
- 1
- 22
- 47
0
votes
0 answers
How does chrome cancel the optimization of inactive tabs?
When chrome opens an A website and immediately switches to another tab, the resources of the A website will be optimized by chrome, including iframe loading, images loading, timer optimization, request optimization, etc.
I want to know how to turn…

Black-Hole
- 893
- 8
- 20
0
votes
0 answers
Stuck on remote debugging. Not being able to open URL to mobile browser
I have followed all the steps mentioned in the remote debugging documentation of chrome devtools. But the devtools are displaying chromecast as connected device and do not show any interface to open URL in mobile browser. I have tried it on both…

Rehan Umar
- 179
- 1
- 12
0
votes
1 answer
Chrome DevTools - how do you close an alert box?
I am using Chrome DevToools through the Chrome remote interface.
One thing I don't see a way to do here is to close an alert box. Is this possible?

Nicholas DiPiazza
- 10,029
- 11
- 83
- 152
0
votes
2 answers
how to get iframe content with chrome-remote-interface?
I am building a crawler But I need to crawl the iframe contents chrome-remote-interface is not dumping the iframe content is there any way to do it.
Code
CDP.New({'url':url},(err,target) => {
if(!err){
…

Nane
- 2,370
- 6
- 34
- 74