DEV Community

Cover image for Things you may not know about Chrome DevTools
Loftie Ellis
Loftie Ellis

Posted on • Originally published at loftie.com

Simulate Slow Internet Chrome Things you may not know about Chrome DevTools

I use the Chrome Developer tools pretty much daily, but there are a few things I wish I knew earlier

1: Easily get a reference to any inspected element

You can get a reference to any inspected element from the console by right-clicking on the element in the 'elements' view, and choosing 'Store as global variable'.

Easily get a reference to any inspected element

2: Create live expressions pinned to your console

You can create a live expression that is constantly evaluated and pinned to the top of your console. This can be very useful to watch certain elements that you know should update on the page.

Live expression in Chrome

3: Simulate slow internet

You can simulate different internet speeds directly from the Network tab. Really useful to see how your code reacts when it can take several seconds to load.

Test different internet speeds

4: Disable Caching, and preserve logs

I have had many issues that turned out to be not errors at all, simply cached code that was wrongly loaded. To prevent this you can turn off all caching from the network tab. (Note that it will only disable cache when the DevTools window is open)

Preserve logs are another useful feature to keeps your logs/console output from clearing when you navigate through different pages.

Disable cache and Preserve logs

5: Take screenshots directly from the developer console

Chrome devtools has a built-in screenshot tool. To use it type the ctrl+shift+p (with the devtools window open), then type 'screenshot'.

Take screenshots directly from the developer tools

6: There is more to logging than console.log

We all use console.log for debug output, but you have a few more options:

console.warn, console.error

console.warn prints out a different coloured message, and you can filter the log levels.

console.warn, console.error

console.table

If you have a structed list of data console.table will print it in a pretty table format.

console.table(data)

There are several more such as console.assert, console.group, you can see the rest here:

7: $_ returns the most recently evaluated expression

Use $_ to reference the return value of the previous operation executed in the console.

$_

8: $ is a shortcut for document.querySelector

You can use $ to quickly select elements from the console, without jquery.
Similarly $$ is a shortcut for document.querySelectorAll

9: Trigger hover or focus state in styles panel

Hover states can be tricky to inspect since you have to move your mouse over the element, but there is an easy way: Under Styles, you can force an element style.

Force certain element states

10: Ctrl+click to find where a CSS property is defined

Ever wondered exactly where a certain css rule was defined? That is easy to find out, you can simply ctrl+click (cmd+click on a Mac) on the rule.

Ctrl+click takes you to where the css rule was defined

Do you have any other DevTools tips? let me know in the comments :)

This post was originally published at https://loftie.com/post/things-you-may-not-know-about-chrome-devtools/

Latest comments (40)

Collapse
 
murroughfoley profile image
Murrough Foley

Disabling caching. That will definitely go in my back pocket.

Collapse
 
seniru profile image
Seniru Pasan Indira

Wwow! Really helpful. I never knew we can do these things with Chrome DEV tools

Collapse
 
pasupuletics profile image
Chandrasekhar Pasupuleti

you can also add console.dir it actually prints objects raw structure.

Collapse
 
weakish profile image
Jang Rush

Hello, I'd like to translate these awesome tips to Chinese. The translation will be published at nextfe.com Can you give me the permission?

Collapse
 
lpellis profile image
Loftie Ellis

Feel free, please just credit the original post

Collapse
 
weakish profile image
Jang Rush

Published Chinese translation today: nextfe.com/chrome-dev-tools/

This original post is credited and back-linked at the beginning of the translation.

Collapse
 
sgaawc profile image
Mazen Khiami

All were great. Add β€˜Control + P’ shortcut pressed anywhere in the devtools to search for any file in thr current project for a quick and easy access. Useful if you r working in Angular with lots of components and files in the tree view.

Collapse
 
joeattardi profile image
Joe Attardi

Wow, did not know about the live expressions! That is awesome!

Collapse
 
michaelnle profile image
Michael LeπŸ‘¨β€πŸ’»

You can add -method: OPTIONS to remove all option calls in the network tab.

Collapse
 
surajkamdi profile image
Suraj Kamdi

This is really helpful... πŸ‘πŸ»

Collapse
 
dimarconicola profile image
Nicola Di Marco πŸ”₯πŸ™

Number 10 is gonna save my life

Some comments may only be visible to logged-in visitors. Sign in to view all comments.