gpt4 book ai didi

vba - Selenium-vba 按类名获取元素

转载 作者:行者123 更新时间:2023-12-02 18:03:10 25 4
gpt4 key购买 nike

当我尝试以下操作时,出现错误“对象不支持属性或方法”

Sub Testing()
Dim driver As New SeleniumWrapper.WebDriver
driver.Start "chrome", "http://www.tsn.ca/fury-upsets-klitschko-to-become-heavyweight-champion-1.401257"
driver.Open "/"

MsgBox driver.getElementsByClassName("headline").Text

End Sub

我也尝试过driver.getElementsByClassName("headline")(0).Text

最佳答案

这不是“获取” - 它是“查找”:

driver.findElementByClassName("headline").Text

或者,使用 CSS 选择器:

driver.findElementByCssSelector(".headline").Text

关于vba - Selenium-vba 按类名获取元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33977978/

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