如何打开NOT SECURE URL以通过python自动化?

zte4gxcn  于 2023-03-28  发布在  Python
关注(0)|答案(2)|浏览(119)

我面临着无法通过selenium打开不安全URL进行自动化的问题。如何通过python Selenium打开不安全URL进行自动化?
我期望输出到自动打开不安全的Web应用程序的URL和自动登录页面,并自动点击或打开按钮或动作

yzckvree

yzckvree1#

您可以使用ignore-ssl-errors选项:

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--ignore-ssl-errors=yes')
options.add_argument('--ignore-certificate-errors')

allow-insecure-localhost也可以帮助:

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--allow-insecure-localhost')

然后

driver = webdriver.Chrome(options=options)
driver.get('https://google.com/')
cetgtptt

cetgtptt2#

**感谢@Andrey,**解决了我自动打开登录页面的问题。但现在如何在登录表单中自动输入用户名和密码以自动登录并使用Selenium Python打开Web应用程序。请指导我

相关问题