项目简介
FlauI是一个开源的.NET库,用于自动化测试Windows应用程序。它可以通过编写C#代码来模拟用户在应用程序中的操作,例如点击按钮、输入文本、移动鼠标、触摸、获取元素、获取窗口标题等。
它提供了一个简单的API和精确的鼠标控制功能,让开发者能够轻松地编写自动化脚本,从而提高应用程序的测试效率和开发效率。
网站:https://github.com/FlaUI/FlaUI
安装Nuget包
Install-Package FlaUI.UIA3
示例代码
using FlaUI.Core.AutomationElements;
using FlaUI.UIA3;
using System.Windows;
namespace FlaUIDemo
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : System.Windows.Window
{
public MainWindow()
{
InitializeComponent();
}
#if false
private void Button_Click(object sender, RoutedEventArgs e)
{
var app = FlaUI.Core.Application.Launch("notepad.exe");
using (var automation = new UIA3Automation())
{
var window = app.GetMainWindow(automation);
MessageBox.Show(window.Title);
}
}
#endif
private void Button_Click(object sender, RoutedEventArgs e)
{
try
{
var app = FlaUI.Core.Application.Launch("D:\\。。。\\RealtimeTranslation.exe");
using (var automation = new UIA3Automation())
{
var window = app.GetMainWindow(automation);
var button1 = window.FindFirstDescendant(cf => cf.ByText("粘贴注释并翻译"))?.AsButton();
button1?.Invoke();
}
}
catch (Exception ex)
{
MessageBox.Show("操作异常:" + ex.Message);
}
}
}
}
标签:FlaUI,app,automation,window,关于,使用,var,using
From: https://www.cnblogs.com/wzwyc/p/17610814.html