DevTools location / placement - opening devtools on the bottom instead of side
See original GitHub issueI have this which works:
const browser = await puppeteer.launch({
headless: false,
devtools: true,
ignoreDefaultArgs: true,
args: args.concat([
'--remote-debugging-port=9223',
'--load-extension=/some/local/path/to/your/extension'
]
)
});
however this opens DevTools on the right hand side, instead of the bottom of the browser. See:
Is there a flag we can use to tell Chrome to open DevTools on the bottom of the page?
I looked through the issues and don’t see a related question, thanks, sorry if it’s a dumb question but was hard to find an answer with Google.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:4
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Change placement: undock, dock to bottom, dock to left
Run one of the following commands: Dock to left , Dock to right , Dock to bottom , Undock into separate window or...
Read more >opening devtools on the bottom instead of side · Issue #1797
I have this which works: const browser = await puppeteer.launch({ headless: false, devtools: true, ignoreDefaultArgs: true, ...
Read more >How to reposition Chrome Developer Tools - Stack Overflow
To change the split between the HTML and CSS panels, go in DevTools to Settings (F1) > General > Appearance > Panel Layout....
Read more >Chrome DevTools - 20+ Tips and Tricks - KeyCDN
Open from browser menu#. You can open Chrome DevTools from the Chrome menu. Go to More Tools and then click Developer Tools ....
Read more >Undock and Move the Developer Tools
In the Chrome Developer Tools, the bottom left icon allows you to change the dock settings of your Developer Tools. A quick click...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@chriscalo I will leave it here in case someone is still looking how to launch Puppeteer with DevTools stacked to bottom:
@aslushnikov Where did you get
devtools.currentDockState = 'bottom'
? Can’t find such a pref in the list.