Imagine there is a List item called one. When you click on this List item it opens a new page. I want to click on the List item with a js code input via the google chrome console (without button...).
The id of the Li is: one
document.getElementById("one").click();
When i put that in the console it doesn´t work.