Grails - How to check, if a link is pointed to correct location using Geb?

StackOverflow https://stackoverflow.com/questions/21981708

  •  15-10-2022
  •  | 
  •  

Question

I have a link <a herf="redirect_url" class="class_name">link</a> that is pointed to some page. How can i check if, the link is pointed to correct location using Geb?

Was it helpful?

Solution

This would work

$("a.class_name").attr("href") == "redirect_url"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top