现在,我的脚本转到页面,并在出现错误消息之前,从下拉列表“ Vijesti”中打开第二个对象。
这是错误:
StaleElementReferenceException:消息:在缓存中找不到元素-自查找页面以来,页面可能已更改
从selenium站点:
当对元素的引用现在“陈旧”时抛出。陈旧意味着元素不再出现在页面的DOM上。StaleElementReferenceException的可能原因包括但不限于: 您不再位于同一页面上,或者自找到元素以来该页面可能已刷新。 自找到元素以来,该元素可能已被删除并重新添加到屏幕上。例如正在重定位的元素。当值更新并重建节点时,这通常会在JavaScript框架中发生。 元素可能位于iframe或其他刷新的上下文中。
当对元素的引用现在“陈旧”时抛出。陈旧意味着元素不再出现在页面的DOM上。StaleElementReferenceException的可能原因包括但不限于:
我要选择每个对象,然后将其打开。
这是网址中的SELECT部分:
<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 = 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