mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 12:46:46 +00:00
14 lines
366 B
C#
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));
|
|
}
|
|
} |