gpt4 book ai didi

javascript - 通过 Selenium 驱动程序执行 Javascript elementFromPoint

转载 作者:行者123 更新时间:2023-11-29 19:23:38 25 4
gpt4 key购买 nike

我正在尝试为我的基于 Selenium 的框架实现一个“对象选择器”,这在大多数商业自动化工具中都很常见。为此,我使用 Javascript 命令在鼠标位置查找元素,但没有得到我期望的元素。

如果我使用 ChromeDriver 或 InternetExplorerDriver,脚本总是返回 header 对象。无论我看什么网页或鼠标的位置。尽管听起来脚本采用的是坐标 0、0 而不是鼠标位置,但我已确认 Cursor.Position 正在发送正确的值。

如果我使用的是 FirefoxDriver,我会遇到异常:

"Argument 1 of Document.elementFromPoint is not a finite floating-point value. (UnexpectedJavaScriptError)"

谁能看出我做错了什么?

    private void OnHovering()
{
if (Control.ModifierKeys == System.Windows.Forms.Keys.Control)
{
IWebElement ele = null;
try
{
// Find the element at the mouse position
if (driver is IJavaScriptExecutor)
ele = (IWebElement)((IJavaScriptExecutor)driver).ExecuteScript(
"return document.elementFromPoint(arguments[0], arguments[1])",
new int[] { Cursor.Position.X, Cursor.Position.Y });

// Select the element found
if (ele != null)
SelectElement(ele);
}
catch (Exception) { }
}
}

谢谢!

最佳答案

实际上是关于如何将坐标传递到脚本中。 脚本参数必须单独指定为单独的 ExecuteScript() 参数。在您的案例中发生的事情是您基本上指定了一个 x 参数,这使得它认为 y 应该被视为默认 0 值。在 y=0 处通常有一个标题。

代替:

ele = (IWebElement)((IJavaScriptExecutor)driver).ExecuteScript(
"return document.elementFromPoint(arguments[0], arguments[1])",
new int[] { Cursor.Position.X, Cursor.Position.Y });

你应该这样做:

ele = (IWebElement)((IJavaScriptExecutor)driver).ExecuteScript(
"return document.elementFromPoint(arguments[0], arguments[1])",
Cursor.Position.X, Cursor.Position.Y);

关于javascript - 通过 Selenium 驱动程序执行 Javascript elementFromPoint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31910534/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com