gpt4 book ai didi

python - TypeError: 'WebElement' 对象不可下标

转载 作者:行者123 更新时间:2023-12-05 00:47:05 25 4
gpt4 key购买 nike

我尝试使用 Python 在 Spotify Web Player 上按下重播按钮,但出现此错误。如何在网络播放器中按下按钮?

replay = driver.find_element_by_xpath("""/html/body/div[2]/div/div[4]/div[3]/footer/div/div[2]/div/div[1]/div[5]/button""")[0]
replay.click()

错误:

replay = driver.find_element_by_xpath("""/html/body/div[2]/div/div[4]/div[3]/footer/div/div[2]/div/div[1]/div[5]/button""")[0]
TypeError: 'WebElement' object is not subscriptable

最佳答案

此错误消息...

TypeError 'WebElement' object is not subscriptable

...表示您已将索引附加到 WebElement不支持。


分析

只有 list 元素可以被索引。但是,在这行代码中:

replay = driver.find_element_by_xpath("""/html/body/div[2]/div/div[4]/div[3]/footer/div/div[2]/div/div[1]/div[5]/button""")[0]

driver.find_element_by_xpath("""/html/body/div[2]/div/div[4]/div[3]/footer/div/div[2]/div/div[1]/div[5]/button""") 总是会返回一个single WebElement。因此,您无法通过任何索引访问元素,例如[0][1]等作为index只能与list关联。 p>


解决方案

有两种方法可以解决这个问题。

  • 在第一种方法中,您可以删除 index,即 [0],在这种情况下 replay 将是分配有通过 locator strategy 标识的第一个匹配元素如下:

    replay = driver.find_element_by_xpath("""/html/body/div[2]/div/div[4]/div[3]/footer/div/div[2]/div/div[1]/div[5]/button""")
  • 在另一种方法中,您可以使用 find_elements_by_xpath() 创建一个 list,而不是使用 find_element_by_xpath() 并访问List 中的第一个元素,使用索引 [0] 如下:

    replay = driver.find_elements_by_xpath("""/html/body/div[2]/div/div[4]/div[3]/footer/div/div[2]/div/div[1]/div[5]/button""")[0]

引用

您可以在以下位置找到一些相关讨论:

关于python - TypeError: 'WebElement' 对象不可下标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58734107/

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