当我传递网址以加载网站时,例如http://yoururl.com
,它会重定向到https://yoururl.com
我的意思是,使用HTTP传递网址会自动重定向为浏览器网址中的https://yoururl.com
。
@driver.get("http://yoururl.com")
使用的浏览器:Chrome
有没有办法停止将HTTP网址重定向为HTTPS?
答案 0 :(得分:2)
由于您处于HTTP
环境,Chrome 63及以上版本将不再使用.dev
域local/dev
。
https://iyware.com/dont-use-dev-for-development/
Chrome 63(自2017年12月起)将强制所有域名结束 .dev(和.foo)通过预加载的HTTP Strict重定向到HTTPS 传输安全(HSTS)标头 https://ma.ttias.be/chrome-force-dev-domains-https-via-preloaded-hsts/
答案 1 :(得分:1)
这会有几个原因发生。
以下是第二种情况https://superuser.com/questions/565409/chrome-how-to-stop-redirect-from-http-to-https
的一些帮助