capybara - :9443出现在我正在访问的网址中

时间:2018-01-23 01:56:50

标签: https capybara

我想访问https://latest.www.abc.com/def之类的网址 但是,当我运行时,它变为https://latest.www.abc.com:9443/def

如何省略:9443并且能够完全访问https://latest.www.abc.com/def

谢谢!

1 个答案:

答案 0 :(得分:0)

如果您只访问外部网站(不测试本地应用),请设置Capybara.run_server = false,这将阻止Capybara启动服务器并尝试将该服务器的端口插入URL。

如果您正在测试本地应用程序并且还需要访问外部站点,请确保未将Capybara.always_include_port设置为true(默认为false)或在访问命令中明确指定所需的端口

visit('https://latest.www.abc.com:443/def')