我需要正确验证 coveo 搜索建议中的建议列表
I need to verify that suggestion list in coveo's search suggests correctcly
所以,是的,我试图通过 css select 或在 Selenium 中找到建议魔法框,试图将向下键发送到 select 建议值,试图通过 JavaScript 找到元素的标签,但没有任何帮助。
我所发现的只是该元素位于此处。
div[class='magic-box-suggestion coveo-omnibox-selectable']
但试图从该元素中获取所有子元素 return 0 个元素。我试图 Google 那个问题,但没有找到任何东西。
我有办法了!我们在这里:
driver.findElements(By.xpath("//div[./span[@class='coveo-omnibox-hightlight']]"));
此代码 returns List<WebElement>
包含 Coveo 的 magic-box-suggestions 中的所有 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);
所以,是的,我试图通过 css select 或在 Selenium 中找到建议魔法框,试图将向下键发送到 select 建议值,试图通过 JavaScript 找到元素的标签,但没有任何帮助。 我所发现的只是该元素位于此处。
div[class='magic-box-suggestion coveo-omnibox-selectable']
但试图从该元素中获取所有子元素 return 0 个元素。我试图 Google 那个问题,但没有找到任何东西。
我有办法了!我们在这里:
driver.findElements(By.xpath("//div[./span[@class='coveo-omnibox-hightlight']]"));
此代码 returns List<WebElement>
包含 Coveo 的 magic-box-suggestions 中的所有 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);