Having trouble identifying a locator using CSS.
There are 10 elements with the same locator name on the webpage. Each web element has the same XPath value:
//div[@class='thumb_image']
The web element list size is 10. If I want to access the 5th element, I can use the index value (//div[@class='thumb_image'])[5]
. How can I fetch the fifth element using a Cascading Style Sheet locator application? Can you please assist me in resolving this issue?