gpt4 book ai didi

python - Selenium Web 驱动程序使用 POST 请求导航到页面

转载 作者:行者123 更新时间:2023-11-28 18:31:29 32 4
gpt4 key购买 nike

我正在尝试通过 post 请求在 python 中使用 selenium 导航到一个页面。

我已经收到使用 seleniumrequests 的请求:

response = driver.request('POST','http://example.com', data={"agree": "1"})

但它只返回一个 200 请求字符串,我正在尝试实际导航到该页面。

最佳答案

它可能会慢一点,但是你不能让你的驱动程序找到元素(复选框或任何你必须单击表示你同意的东西)并让它单击它,然后单击同意按钮提交它?

所以使用类似的东西:

self.driver = webdriver.Firefox()
driver = self.driver
driver.get('http://example.com')
driver.findElementById('idOfCheckBox').click()

然后如果有另一个提交按钮使用另一个 driver.findElementById('idOfButton').click()

关于python - Selenium Web 驱动程序使用 POST 请求导航到页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36798339/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com