设置标题 - capybara mechanize 或 selenium
在我的黄瓜中,当我使用 mechanize 驱动程序或 selenium 驱动程序请求水豚页面时,我需要向 http 标头添加键/值对。
我正在使用 capybara 1.1.1 和 mechanize 2.0.1 和 selenium 2.5.0
但如何呢?
这是我的步骤定义:
When /^set some headers$/ do
#set some headers here
visit('/url')
end
Then /^some result$/ do
#check page responds to header
end
非常感谢,
轮缘
In my cucumbers, I need to add a key/value pair to the http headers when I request a page with capybara using the mechanize driver or perhaps the selenium driver.
I'm using capybara 1.1.1 and mechanize 2.0.1 and selenium 2.5.0
But how?
Here are my step definitions:
When /^set some headers$/ do
#set some headers here
visit('/url')
end
Then /^some result$/ do
#check page responds to header
end
Many thanks,
Rim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Mechanize,您应该能够在请求中设置标头,如下所示:
If you're using Mechanize you should be able to set headers in the request like this: