selenium(Python)-选择

selenium(Python)-选择,第1张

selenium(Python)-选择

__从下拉列表中选择一项时 ,页面会刷新

您需要

select
在每个选择的选项上“重新查找” 元素:

select = Select(driver.find_element_by_name('kategorija'))for index in range(len(select.options)):    select = Select(driver.find_element_by_name('kategorija'))    select.select_by_index(index)    # grab the results


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5600311.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存