我正在尝试使用 Javascript 片段来确保两个具有某些文本的 div 共同存在于另一个中 [基本上验证某个帖子上是否存在评论]
JS 适用于 firebug,但在 selenium IDE 上失败。
javascript{
return ($.grep( $("#Posts li") .map(function(index,element){
if($(element).has(".puls_content:contains('post text')").length > 0){
if($(element).has("*:contains('this is a comment')").length > 0) {
return true
}
}
return false
}) , function(x){ return x}).length > 0) }
我从 selenium-api.js 收到 Unexpected Exception 错误,有什么帮助吗?