I an working on some unit testing using Selenium with Nunit in c#.
In theory this is quite simple, i have a element i want to click to go to another page. The issue i have is that the part that makes it clickable loads later than the actual element. Meaning that if i just wait until the element has loaded, clicking it still does nothing. I also tried waiting for it to be clickable, but it still doesn't seem to work.
Is there any way around this except a static delay?
Thanks