Python selenium 元素循环与xpath [已关闭]

k5ifujac  于 2022-12-04  发布在  Python
关注(0)|答案(1)|浏览(153)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question

try:
    for i in range(n):
      company=driver.find_element(By.XPATH,'//*[@id="main-content"]/section[2]/ul/li['+str(i)+']/div/div[2]/h4')
      companyname.append(company)
except IndexError:
    print("no")

嗨,xpath在废弃python selenium循环时不起作用,或者我做错了

pb3s4cty

pb3s4cty1#

尝试使用driver.find_element(By.CSS_SELECTOR "CSS_SELECTOR")查找此元素,并简单地复制页面检查部分中元素的选择器

相关问题