**已关闭。**此问题需要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循环时不起作用,或者我做错了
1条答案
按热度按时间pb3s4cty1#
尝试使用
driver.find_element(By.CSS_SELECTOR "CSS_SELECTOR")
查找此元素,并简单地复制页面检查部分中元素的选择器