Scrolling down in Chrome dev tools when paused in debugger

Google Chrome-Devtools

Google Chrome-Devtools Problem Overview


Is there any way to scroll down on the page while Chrome is paused in debugger mode without unpausing?

Google Chrome-Devtools Solutions


Solution 1 - Google Chrome-Devtools

If your tools are docked, you can undock it to see a bit more.

Another method:

  1. Go to the Elements tab.
  2. Right-click on any visible element (i.e. not hidden, display:none, etc.).
  3. Choose the "Scroll Into View" context menu entry.
  4. Chrome will scroll the page if necessary to get the element in the visible portion of the window.

Solution 2 - Google Chrome-Devtools

Taken from here.

An easy workaround for the scrolling lock-up is to just jump to the console, and:

window.scrollTo(0, 800). (Replace 800 as needed)

Solution 3 - Google Chrome-Devtools

To enable scroll, enter, in console: document.body.style.overflow = 'auto'

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionlk135View Question on Stackoverflow
Solution 1 - Google Chrome-DevtoolsRob WView Answer on Stackoverflow
Solution 2 - Google Chrome-DevtoolsAntonView Answer on Stackoverflow
Solution 3 - Google Chrome-DevtoolsRoberto SantosView Answer on Stackoverflow