I am trying to quickly find a specific node using XPath but it seems my multiple predicates are not working. The div I need has a specific class, but there are 3 others that have it. I want to select the fourth one so I did the following:
//div[@class='myCLass' and 4]
However the "4" is being ignored. Any help? I am new to XPath.
Thanks.