13 lines
450 B
C#
13 lines
450 B
C#
namespace Recordingtest.Recorder.Tests;
|
|
|
|
internal sealed class FakeElement : IElementSnapshot
|
|
{
|
|
public string ClassName { get; set; } = "Element";
|
|
public string? AutomationId { get; set; }
|
|
public string? Name { get; set; }
|
|
public bool IsPassword { get; set; }
|
|
public (double Left, double Top, double Width, double Height) BoundingRectangle { get; set; }
|
|
= (0, 0, 0, 0);
|
|
public IElementSnapshot? Parent { get; set; }
|
|
}
|