我需要验证coveo搜索中的建议列表是否正确建议

时间:2018-08-24 13:59:30

标签: javascript java selenium autosuggest coveo

所以,是的,我尝试通过 Selenium 中的CSS选择器找到建议魔术盒,尝试发送DOWN键选择建议值,尝试通过JavaScript查找元素的标签,但没有任何帮助。 我发现的只是这个元素放在这里的某个地方。

div[class='magic-box-suggestion coveo-omnibox-selectable']

但是尝试从该元素中获取所有子元素会返回0个元素。我曾尝试向Google搜索该问题,但未发现任何问题。

1 个答案:

答案 0 :(得分:0)

我有解决方案!我们在这里:

driver.findElements(By.xpath("//div[./span[@class='coveo-omnibox-hightlight']]"));

此代码返回List<WebElement>,其中包含Coveo魔术盒建议中的所有span元素。

JavaScript 代码帮助我找到了Coveo自动建议查询的定位器。只需在浏览器的控制台中执行此操作即可。

// select the target node
var target = document.querySelector('div.magic-box-suggestions');

// create an observer instance
var observer = new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {
        console.log(mutation);
    });    
});

// configuration of the observer:
var config = { attributes: true, childList: true, characterData: true }

// pass in the target node, as well as the observer options
observer.observe(target, config);