Is there an Activity name for device lock screen settings on Android?

How do I launch the lock screen settings from the settings?

If you are not using a grid provider, you have access to adb, and you can launch it directly with

am start -a android.app.action.SET_NEW_PASSWORD

This will start android settings and put you on the Unlock selection screen

Otherwise, it depends upon your device. On an Android reference device, you’d start settings, click “security”, then click “Screen lock”

@willosser
Is there same option to launch from a webdriver but not adb shell?