我正在重构RSS所以我决定用CasperJS编写一些测试。
RSS的一个要素是" atom:link" (&#34)
我尝试了这三个代码,但没有一个
test.assertExists("//atom:link", "atom:link tag exists.");
test.assertExists({
type: 'xpath',
path: "//atom:link"
}, "atom:link element exists.");
//even this...
test.assertExists({
type: 'xpath',
namespace: "xmlns:atom",
path: "//atom:link"
}, "atom:link element exists.");
RSS代码是:
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xml:base="http://example.org/" xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>RSS Title</title>
<description>RSS description</description>
<link>http://example.org</link>
<lastBuildDate>Mon, 10 Nov 2014 11:37:02 +0000</lastBuildDate>
<language>es-ES</language>
<atom:link rel="self" href="http://example.org/rss/feed.xml"/>
<item></item>
<item></item>
</channel>
</rss>
我在本页http://www.freeformatter.com/xpath-tester.html的演示中看到了这一点,foo:歌手可以通过以下方式访问:
//foo:singers
但是在CasperJS看来,这不起作用......
任何人都知道如何用命名空间选择这种元素吗?
答案 0 :(得分:2)
CasperJS用于通过XPath解析元素的函数是document.evaluate
:
var xpathResult = document.evaluate(
xpathExpression,
contextNode,
namespaceResolver,
resultType,
result
);
当您查看source code时,namespaceResolver
始终为null
。这意味着CasperJS不能将XPath与前缀一起使用。如果你试试,你得到
[error] [remote] findAll():提供的选择器无效&#34; xpath选择器:// atom:link&#34;:错误:NAMESPACE_ERR:DOM异常14
您必须创建自己的方法来检索带有user defined nsResolver的元素。
casper.myXpathExists = function(selector){
return this.evaluate(function(selector){
function nsResolver(prefix) {
var ns = {
'atom' : 'http://www.w3.org/2005/Atom'
};
return ns[prefix] || null;
}
return !!document.evaluate(selector,
document,
nsResolver,
XPathResult.ANY_TYPE,
null).iterateNext(); // retrieve first element
}, selector);
};
// and later
test.assertTrue(casper.myXpathExists("//atom:link"), "atom:link tag exists.");