I would like to know(if possible), while using selenium for testing UI, can the selenium commands be run via chrome console(developer console) similar to running/testing xpath for example like using $x("//input[@name='inputname']")
which would give the input/tag with the specified name.
Here by selenium commands, i mean for example finding a text box and typing[type ( locator,value )] a text data(value) into it, using only the chrome console and not by running the test cases/scripts ? Thanks.