GPAL - Generally Positive Automation Library v1.0
GPAL The Fluent Automation LIbrary
Loading...
Searching...
No Matches
ElementSettings.cs
1// =============================================================================
2// GPAL - Generally Positive Automation Library
3// Copyright © 2026 Software Decisions, Inc. All rights reserved.
4//
5// This file is part of GPAL.
6// Licensed under the Business Source License 1.1
7//
8// Primary development, architecture, and vision by Michael B. Vederman,
9// CEO of Software Decisions, Inc., Texas.
10//
11// Internal development maintained privately.
12// Public releases appear on GitHub: https://github.com/SoftwareDecisionsInc/GPAL.
13//
14// See LICENSE for full terms, including Additional Use Grant.
15// =============================================================================
16
17using System;
18using System.Collections.Generic;
19using System.Linq;
20using System.Text;
21using System.Threading.Tasks;
22using OpenQA.Selenium;
23using System.Windows.Automation;
24using static GenerallyPositive.Enums;
25
27{
29 {
30 internal GPALAutomationElement AutomationElement { get; set; }
31 internal Application Application { get; set; }
32 internal Selector Selector { get; set; }
33 internal InteractionType InteractionType { get; set; } = InteractionType.UIAutomation;
34 }
35}
36
Application workflow container for automation elements.