54

I would like to debug my javascript application using Google Chrome 3's developer tools. Everything fine and ok, until I actually want to start debugging. I can set breakpoints etc., but I don't want to debug using a mouse but using keyboard.

In Firefox + Firebug I can use F10, F11 and F8 for stepping over, into and run debugged script.

Are there any keyboard shortcuts in Google Chrome's Javascript console window?

System configuration (if relevant):

  • Windows Server 2008 R2 (would probably work the same in Windows 7)
  • Google Chrome 3.0.195.21

Edit
I investigated this issue even further and it turns out to be some sort of a bug, because when I restart Chrome, F8, F10 and F11 work as expected (same as Firebug).

Jasper
  • 2,166
  • 4
  • 30
  • 50
Robert Koritnik
  • 103,639
  • 52
  • 277
  • 404

6 Answers6

60

F8 - Run

F10 - Step over

F11 - Step into

Works for me

Robert Koritnik
  • 103,639
  • 52
  • 277
  • 404
Christopher Tokar
  • 11,644
  • 9
  • 38
  • 56
58

To see the full list of shortcuts for the currently installed version: in chrome open the Developer Tools Ctrl+Shift+I and then open shortcut help ?.enter image description here

Edit: To get list of shortcuts, press Shift + ? when you are in other than 'console' tab, like 'Elements' or 'Resources'

TylerT
  • 87
  • 8
yurilo
  • 3,079
  • 2
  • 23
  • 14
11

In addition to Chris Tek's answer:

Shift + F11 - Step Out Of

G-Wiz
  • 7,370
  • 1
  • 36
  • 47
7

Here is the full list of shortcuts for the latest version of Chrome Developer Tools:

http://code.google.com/chrome/devtools/docs/shortcuts.html

T Nguyen
  • 3,309
  • 2
  • 31
  • 48
0

Toggle Breakpoint: Ctrl+B, pretty essential!

https://developer.chrome.com/devtools/docs/shortcuts

Ulf Gjerdingen
  • 1,414
  • 3
  • 16
  • 20
Mosca Pt
  • 517
  • 4
  • 10
0

A much better reference of Chrome DevTools shortcuts can be found here (https://shortcutref.com/chrome-dev-tools).

This page only shows the relevant shortcuts (level, OS, category) and has short and precise descriptions.

yadongwen
  • 31
  • 6
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Martin Evans Aug 24 '17 at 07:11