我正在尝试从React.js网络应用中点击动态加载的项目。该项打开一个类名为newItemView
的模态窗口。我尝试了很多东西,但没有什么是可靠的。它会工作几次,但然后给我一个错误。
目标是单击动态项目,然后单击模态窗口中的按钮。
尝试1:
driver.wait(until.elementLocated(By.xpath(PATH_TO_DYNAMIC_ELEMENT)), MAX_WAIT_TIME,
'Could not locate the element within the time specified')
.then(function() {
driver.findElement(By.xpath(PATH_TO_DYNAMIC_ELEMENT)).click();
});
driver.wait(until.elementLocated(By.xpath(PATH_TO_MODAL_BUTTON)), MAX_WAIT_TIME,
'Could not locate the modal element within the time specified')
.then(function() {
driver.findElement(By.xpath(PATH_TO_MODAL_BUTTON)).click();
});
大约五分之一,这会抛出'Could not locate the modal element within the time specified'
因为模态实际上没有打开。
尝试2次等待,然后使用Actions
移过按钮并点击:
driver.wait(until.elementLocated(By.xpath(PATH_TO_DYNAMIC_ELEMENT)), MAX_WAIT_TIME,
'Could not locate the dynamic element within the time specified')
.then(function() {
driver.findElement(By.xpath(PATH_TO_DYNAMIC_ELEMENT))
.then(function(PATH_TO_DYNAMIC_ELEMENT_BUTTON) {
var actions = new webdriver.ActionSequence(driver);
actions.mouseMove(PATH_TO_DYNAMIC_ELEMENT_BUTTON).click().perform();
});
});
然后执行检查以查看模态是否已打开
driver.findElement(webdriver.By.className("newItemView"))
.then(function() {
driver.findElement(By.xpath(PATH_TO_MODAL_BUTTON)).click();
}, function (err) {
if (err.name === "NoSuchElementError")
console.log("Element was missing!");
});
这看起来效果更好,但仍然会在大约十分之一的情况下抛出。在网页上,Actions
似乎有效,因为该项目已在hover
上显示,但从未点击过。
答案 0 :(得分:0)
我认为你可以尝试使用JavaScript执行器......比如
switch
答案 1 :(得分:0)
你的第一个问题是你没有正确地束缚你的承诺。如果你的承诺变得平坦,就会更容易看到问题:
return driver.wait(until.elementLocated(By.xpath(PATH_TO_DYNAMIC_ELEMENT)), MAX_WAIT_TIME,
'Could not locate the dynamic element within the time specified')
.then(function() {
return driver.findElement(By.xpath(PATH_TO_DYNAMIC_ELEMENT));
})
.then(function(button) {
var actions = new webdriver.ActionSequence(driver);
return actions.mouseMove(button).click().perform();
});
也就是说,在发送click事件和浏览器做出反应之间仍然存在一些延迟。例如,您可能需要添加等待新元素变为可见的内容。