splinter:可见下拉列表是可点击的但不可选择

时间:2015-03-10 21:16:35

标签: python css selenium selenium-webdriver splinter

我试图通过splinter从模式下拉列表中选择一些东西。我找到这个下拉列表没有问题,例如:

(Pdb) dropdown = next(i for i in my_browser.find_by_xpath('//select[@name="existing.widgets.user:list"]') if i.visible)

(我正在处理的页面实际上有多个相同的模态,所以我必须得到当前的,可见的一个。叹气......)

可以点击下拉列表:

(Pdb) dropdown.visible
True
(Pdb) dropdown.click()  //succeeds and displays menu
(Pdb)

...但是尝试选择它会失败,即使它被认为是可见的!

(Pdb) dropdown.select('my_val')
*** ElementNotVisibleException: Message: Element is not currently visible and so may not be interacted with
Stacktrace:
    at fxdriver.preconditions.visible (file:///tmp/tmp6tSmOc/extensions/fxdriver@googlecode.com/components/command-processor.js:9587)
    at DelayedCommand.prototype.checkPreconditions_ (file:///tmp/tmp6tSmOc/extensions/fxdriver@googlecode.com/components/command-processor.js:12257)
    at DelayedCommand.prototype.executeInternal_/h (file:///tmp/tmp6tSmOc/extensions/fxdriver@googlecode.com/components/command-processor.js:12274)
    at DelayedCommand.prototype.executeInternal_ (file:///tmp/tmp6tSmOc/extensions/fxdriver@googlecode.com/components/command-processor.js:12279)
    at DelayedCommand.prototype.execute/< (file:///tmp/tmp6tSmOc/extensions/fxdriver@googlecode.com/components/command-processor.js:12221)
(Pdb) dropdown.visible
True  // what???
(Pdb)

我很确定选择的论点是正确的,所以我对这里发生的事情感到茫然。

如果所有其他方法都失败了,我能用xpath做些聪明的事吗?或者我是否需要尝试以另一种方式寻找/与元素交互?

HTML情况的部分屏幕截图:http://pasteboard.co/1I30ljRl.png

1 个答案:

答案 0 :(得分:1)

事实证明,多种模态是我所做的。

根据名称'existing.widgets.user:list'和所需my_val的下拉列表,来自其来源的失败select来电有:

find_by_xpath('//select[@name="%s"]/option[@value="%s"]' % (dropdown['name'], my_val).click()

现在,事实证明这个find_by_xpath实际上返回了多个/重复的选项,可能来自多个模态!

(Pdb) blah=my_browser.find_by_xpath('//select[@name="%s"]/option[@value="%s"]' % (dropdown['name'], my_val)
(Pdb) blah
[<splinter.driver.webdriver.WebDriverElement object at 0x7f7205ff3750>, <splinter.driver.webdriver.WebDriverElement object at 0x7f7205ff39d0>, <splinter.driver.webdriver.WebDriverElement object at 0x7f7205ff38d0>, <splinter.driver.webdriver.WebDriverElement object at 0x7f7205ff3610>]
(Pdb) [bl.value for bl in blah]
[u'my_val', u'my_val', u'my_val', u'my_val']
(Pdb) [bl.visible for bl in blah]
[False, True, False, False]

我认为我可以通过正确的模式(例如,使用特定的表单类)而不是通过整个页面来访问选项来解决这个问题。即,从

开始
form = my_browser.find_by_xpath('//form[@id="{0}"]'.format(my_current_modal))

...然后尝试

dropdown = form.find_by_xpath(...)
dropdown.select(...)
etc.

但它导致了同样的问题;仍然发现了多个元素,但仍然失败!因此,我采用了可见性检查,实际上有效:

opts = form.find_by_xpath('//select[@name="%s"]/option[@value="%s"]' % (dropdown['name'], my_val)
next(opt for opt in opts if opt.visible).click()

也许我在这里仍然缺少某些东西......甚至是Splinter的一些小车,但至少它有效!