Files
proton-bridge/tests/e2e/ui_tests/windows_os/UIActions.cs
2024-09-17 05:23:08 +00:00

14 lines
366 B
C#

using System;
using FlaUI.Core.AutomationElements;
using FlaUI.Core.Definitions;
using FlaUI.Core.Input;
using FlaUI.Core.Tools;
using NUnit.Framework;
namespace ProtonMailBridge.UI.Tests
{
public class UIActions : TestSession
{
public AutomationElement AccountView => Window.FindFirstDescendant(cf => cf.ByControlType(ControlType.Pane));
}
}