I have the below xpath expression
//div[@class="post-content"]//img which runs on a html page, scanning for images. The above query returns a lot of images but I only want the second in the list.
I have tried these with no luck:
//div[@class="post-content"]//img[1] and //div[@class="post-content"]//img[position()=1]