How do I find a element Id that is autogenerated which means that element will never have the same id once the browser reloads.
There's a way where I find that element string let's say "Click" by doing this in jquery:
$( "a:contains('Click')" ); which gives me this,
<a href="test.com" id=alwayschanging >Click</a>
How do I send a click event to that id or string?