gpt4 book ai didi

python - 如何在 win32com.client IE 中单击链接?

转载 作者:行者123 更新时间:2023-12-01 00:00:24 27 4
gpt4 key购买 nike

我正在使用 win32com.client 来控制 Python 中的 IE 实例。如何单击特定页面上的链接(例如,使用导航到链接 href 是 Not Acceptable ,因为它不会触发引荐来源网址发送)?

这是基础:

import random
import time
from win32com.client import Dispatch

ie = Dispatch("InternetExplorer.Application")
ie.visible = 1

ie.navigate('http://digg.com')

while (ie.ReadyState != 4):
time.sleep(0.05)

hrefs = ie.document.getElementsByTagName("A")
href = hrefs[random.randrange(hrefs.length)]
#How to click this one?

最佳答案

关于python - 如何在 win32com.client IE 中单击链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1661107/

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