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

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

  •  15-10-2022
  •  | 
  •  

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?

有帮助吗?

解决方案

This would work

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top