protected override void ClickingEventHandler(object sender, ComponentActionEventArgs arg)
 {
     DebugLogger.LogInfo($"Before clicking button. Coordinates: X={arg.Element.WrappedElement.Location.X} Y={arg.Element.WrappedElement.Location.Y}");
 }
 protected override void FocusedEventHandler(object sender, ComponentActionEventArgs arg)
 {
     DebugLogger.LogInfo($"After button focused. Coordinates: X={arg.Element.WrappedElement.Location.X} Y={arg.Element.WrappedElement.Location.Y}");
 }