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

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

  •  15-10-2022
  •  | 
  •  

Pergunta

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?

Foi útil?

Solução

This would work

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top