假设,以下是html代码:
<a href="http://www.google.com">Google</a>
通过以下代码,我可以确保 href 用于链接:
expected_href = "http://www.google.com"
actual_href = driver.find_element(:tag_name, "a").attribute("href")
unless actual_href == expected_href
puts "Link is incorrect"
end
但我想确保链接“ http://www.google.com ”没有损坏意味着如果我向“ http://www.google.com ”发出请求,它的响应应该是状态“200”
我该如何测试呢?是否有任何 Ruby 库来测试 http 请求?