I am new to Selenium and coding. What I am trying to do is click a dynamic link. Here is the scenario.
I have to find a dynamic link in a div that has multiple links.
The link I want to click has the myimage attribute and the link will always be different. There can be N-links in the div and some of the links won't have the myimage attribute.
I can locate the div using XPath, but I am having trouble finding the link I want in the div
In short, I want to look through the list of dynamic links in a div, find a link that has the myimage class and click it.
Can someone suggest a reference or provide a code snippet on how to do this with Selenium using C#?