Can someone please help!
How can I highlight all web elements in following class during test execution in WebDriver? With Selenium RC, it was quite straight forward
For highlighting the element you can just use this:
JavascriptExecutor js =(JavascriptExecutor)driver; js.executeScript("arguments[0].style.border='5px dotted yellow'", element);