【发布时间】:2020-03-30 23:27:47
【问题描述】:
元素被正确识别,我可以看到鼠标在这两个元素之间移动,但没有发生拖放。 单击并按住时,UI 未显示任何突出显示。 也没有错误。
我尝试了在不同讨论中提出的不同解决方案,但它们都不适合我
我的代码
_actions = new Actions(Driver.WebDriver);
var dragAndDrop = _actions.ClickAndHold(parentRow)
.MoveToElement(childRow )
.Release(target)
.Build();
dragAndDrop.Perform();
Driver.Wait();
这就是我识别元素的方式
var childList =Driver.WebDriver.FindElements(By.ClassName("itl-treeNode-title"));
var parentRow = childList.FirstOrDefault(x => x.Text.Equals(parentSrc)).FindElement(By.XPath("following-sibling::*[1]"));
var childRow = childList.FirstOrDefault(x => x.Text.Equals(childSrc)).FindElement(By.XPath("following-sibling::*[1]"));
相同的代码可以在我们应用程序的另一个用户界面上运行。
我现在已经像下面这样更改了我的代码,现在我遇到了过时的元素异常——因为我需要动态识别这个元素,所以我不能使用这里提到的 POM 解决方案https://www.softwaretestingmaterial.com/stale-element-reference-exception-selenium-webdriver/#How-To-Overcome-Stale-Element-Reference-Exception-in-Selenium
var childList = Driver.WebDriver.FindElements(By.ClassName("itl-treeNode-title"));
var parent = childList.FirstOrDefault(x => x.Text.Equals(parentSrc)).FindElement(By.XPath("parent::*"));
var parentRow = parent.FindElement(By.ClassName("itl-treenode-content-cover"));
var child = childList.FirstOrDefault(x => x.Text.Equals(childSrc)).FindElement(By.XPath("parent::*"));
var childRow = child.FindElement(By.ClassName("itl-treenode-content-cover"));
childRow.Click();
//try
//{
// (new Actions(Driver.WebDriver)).DragAndDrop(childRow, parent).Perform();
//}
//catch (Exception ex)
//{
// throw new Exception("Failed to perform drag and drop ");
//}
new Actions(Driver.WebDriver).ClickAndHold(childRow)
.MoveToElement(parent)
.Release(parent)
.Build()
.Perform();
Driver.Wait();
例外
OpenQA.Selenium.StaleElementReferenceException: stale element reference: element is not attached to the page document
(Session info: chrome=77.0.3865.120)
at OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Response errorResponse)
at OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters)
at OpenQA.Selenium.Remote.RemoteWebDriver.PerformActions(IList`1 actionSequenceList)
at OpenQA.Selenium.Interactions.Actions.Perform()
【问题讨论】:
标签: c# selenium drag-and-drop action draggable