By using selenium, can I access the browsers element picker (Ctrl + Shift + C, in the browser) that is located in the inspect tab?
I want to "point" to an element using that picker and have it be high lighted in the browser.
For example, something simple like:
WebElement elem = driver.findElement(By.id("userName"));
elem.pointer();
and that would show the element as highlighted/selected in the browser, same was the inspect tab works.