In the address bar, enter chrome://inspect
They changed how to do this.
Bruce Ng's software development blog
An archive of solutions of programming problems I have faced in my career
In the address bar, enter chrome://inspect
They changed how to do this.
If it doesn’t show, it’s possible that it’s because the adb daemon is not running to detect plugged in devices or emulators.
Run adb devices in a terminal to start the daemon if not running already.
Make sure USB debugging is enabled in the device.
Make sure the Android USB driver for the device is installed in the computer.
While working to my our product work with mobile devices, I encountered this issue with Chrome for Android.
It seems that setting an element height to 100vh will include the height of the Chrome Address bar and tabs. This is designed so that when user scrolls down the address bar and tabs will go away to show the web page using the whole screen(except the notification shade, of course).
Where as in Chrome for desktop, 100vh only includes the height of the viewing area below the address bar.
Because of this feature, website that looks correctly in desktop may not work correctly in mobile, need to keep this in mind. Use Android Chrome remote debugging feature to debug the website in Chrome for Android.