On my HTML page I have forty divs but I only want one div
Using agility pack to search and get all the divs with Ids I use this
\"//div[@id]\"
You can use the xpath
//div[@contains(@id,'test')]
If you want to use the first occurrence, it works fine but if it's not the first occurrence you have to go with different xpath specific to the particular element.