StaleElementReferenceException

StaleElementReferenceException

现在,我的脚本转到页面,在收到错误消息之前,打开下拉列表“vijesti”中的第二个对象。
这是错误:
StaleElementReferenceException:消息:在缓存中找不到元素-可能页在查找后已更改
来自硒站点:
当对元素的引用现在“过时”时引发。
stale表示元素不再出现在页面的DOM上。
导致StaleElementReferenceException的可能原因包括但不限于:
您不再位于同一页上,或者该页可能已在元素找到后刷新。
该元素可能已被删除并重新添加到屏幕,因为它已被定位。例如正在重新定位的元素。当更新值并重建节点时,通常可以使用JavaScript框架来实现这一点。
元素可能位于已刷新的iframe或其他上下文中。
我要选择每个对象并打开它。
这是从URL中选择的部分:

<select id="kategorija" name="kategorija">
<option value="0">Kategorija</option>
<option value="12">Vijesti</option>
<option value="8">Biznis</option>
<option value="5">Sport</option>
<option value="2">Magazin</option>
<option value="7">Lifestyle</option>
<option value="3">Scitech</option>
<option value="6">Auto</option>
</select>

代码:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
import time

driver = webdriver.Firefox()

driver.get("http://www.klix.ba/")

assert "Klix" in driver.title

elem = driver.find_element_by_name("q")

elem.send_keys("test")

elem.send_keys(Keys.RETURN)


select = Select(driver.find_element_by_name('kategorija'))

all_options = [o.get_attribute('value') for o in select.options]

for x in all_options:
    select.select_by_value(x)
    time.sleep(3)

这是我做测试的地方。

最佳答案

当从下拉列表中选择一个项目时,页面将刷新自身。
您需要“重新查找”每个选项上的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

07-27 23:31