gpt4 book ai didi

c# - Visual Studio (C#) - 模拟 Win32 按钮按下

转载 作者:行者123 更新时间:2023-11-28 21:12:08 25 4
gpt4 key购买 nike

我需要自动执行一些程序的常见事件,例如 Microsoft Word。测试不用于商业用途,仅用于回归测试。

到目前为止,我只是移动鼠标,然后在按钮上方单击鼠标左键。但是,我们的程序会验证按钮是否处于“按下”状态。当自动化按下鼠标点击按钮时,按钮未按下(按钮不“下沉”)

这是为什么呢?如何使自动鼠标单击使按钮像普通鼠标单击一样被“按下”?

顺便说一句,在这种情况下,我指的是快速工具栏中的“保存”按钮。

我使用的代码很简单——首先找到我要点击的对象,然后使用这段代码;

public void MouseClick(params string[] args)
{
AutomationElement automationElement = elementUtils.FindObjectFullPath(args[1], args[4], args[5]);
string action = args[args.Length - 1];

if (automationElement == null)
return;

FocusApplicationExp(automationElement);

try
{
int x = (int)automationElement.GetClickablePoint().X;
int y = (int)automationElement.GetClickablePoint().Y;
MouseMoveExp(x, y);
MouseAction(action, automationElement);
}
catch (Exception)
{
Console.WriteLine("Failed to get clickable point for " + automationElement.Current.Name + " - Trying to get coordinates of bounding rectangle");
tl.AddLine("Failed to get clickable point for " + automationElement.Current.Name + " - Trying to get coordinates of bounding rectangle");
res.AddLine("Failed to get clickable point for " + automationElement.Current.Name + " - Trying to get coordinates of bounding rectangle");

int x = (int)(automationElement.Current.BoundingRectangle.Right - automationElement.Current.BoundingRectangle.Width / 2);
int y = (int)(automationElement.Current.BoundingRectangle.Bottom - automationElement.Current.BoundingRectangle.Height / 2);
MouseMoveExp(x, y);
MouseAction(action, automationElement);
return;
}
}

private void MouseAction(string action, AutomationElement automationElement)
{
switch (action)
{
case "Left":
Console.WriteLine("Left clicking on: " + automationElement.Current.Name);
tl.AddLine("Left clicking on: " + automationElement.Current.Name);
AutomationUtility.DoMouseClick();
res.AddLine("Left clicked on: " + automationElement.Current.Name);
break;
case "Right":
Console.WriteLine("Right clicking on: " + automationElement.Current.Name);
tl.AddLine("Right clicking on: " + automationElement.Current.Name);
AutomationUtility.DoMouseRightClick();
res.AddLine("Right clicked on: " + automationElement.Current.Name);
break;
case "Double":
Console.WriteLine("Double clicking on: " + automationElement.Current.Name);
tl.AddLine("Double clicking on: " + automationElement.Current.Name);
AutomationUtility.DoMouseDoubleClick();
res.AddLine("Double clicked on: " + automationElement.Current.Name);
break;
default:
break;
}
}

public static void DoMouseClick()
{
Mouse.Click(MouseButton.Left);
}

我确实尝试了一些变体,例如在按下和按下按钮之间设置一些延迟,以防事件发生得太快。但是即使我一直按下按钮,按钮也永远不会进入“按下”状态(当然是在自动化中)

只是为了更清楚 - 自动化确实有效,它确实点击了按钮,并且它确实导致了 word 的保存。这里的问题是使按钮在视觉上被按下(并且在程序方面,改变它的状态)。

我不确定这是否意味着什么,但识别按钮状态和事件的系统是“UX”,并且基于 Win32 的标识符确实以某种方式找到了“按下”状态。

编辑:过去几天我一直在阅读它,事情变得越来越清晰。我使用的自动化是基于 UIAutomation 的,但是按钮状态“按下”是一个 MSAA 状态,没有移动到 UIAutomation 生成的 UI 对象上,所以基于 UIAutomation 的自动化不会调用这个状态。换句话说,我需要找到一种方法来使用 UIAutomation 代码将 MSAA 信号发送到 UIAutomation 元素(包含 IAccessible 接口(interface))。问题是,它只支持相反的方式(将 UIAutomation 信号作为 MSAA 信号发送到 MSAA 元素,它不支持 MSAA-Only 信号,例如“Enter state Pressed”)

最佳答案

我不知道你是否使用这种方式,但它可能有助于点击部分

public void ClickOnPoint(IntPtr wndHandle )
{
//for handle you can use (this.Handle)
//you can assign point directly or recalibrate as you did already
Point buttonPoint(100, 500)
// store old pos if needed
POINT oldPoint;
GetCursorPos(out oldPoint);
// get screen coordinates
ClientToScreen(wndHandle, ref buttonPoint);
// set cursor on coords, and press mouse
SetCursorPos(buttonPoint.X, buttonPoint.Y);
//you can change the timing
mouse_event(0x00000002, 0, 0, 0, UIntPtr.Zero); // left mouse button down
mouse_event(0x00000004, 0, 0, 0, UIntPtr.Zero); // left mouse button up
// return mouse
SetCursorPos(oldPoint.X, oldPoint.Y);
}

关于c# - Visual Studio (C#) - 模拟 Win32 按钮按下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20884065/

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