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