我有一个这样的测试用例:
scenario "there should be an SVG tag" do ... page.find("svg") end
由于某些原因,即使我在页面的源中查看时,水豚也找不到svg标签,但该标签在那里(并且在视觉上)。
在执行以下操作后,我才能够找到SVG标签:
scenario "there should be an SVG tag" do ... page.find("#layers *[xmlns='http://www.w3.org/2000/svg']") end
(请注意,svg在“图层” ID中)。
有人有什么想法吗?我使用Selenium作为驱动程序。
事实证明,这是Firefox内置的xpath评估程序存在的问题。
使用FireBug,我能够验证Selenium使用的呼叫:
document.evaluate("//svg", document, null, 9, null).singleNodeValue
不返回任何元素,而
document.evaluate("//div", document, null, 9, null).singleNodeValue
返回页面上的第一个div。
可能存在一些命名间隔问题,这些问题可能会使FireFox返回svg元素。目前,我只是在寻找具有svg xmlns属性的元素。