-
Notifications
You must be signed in to change notification settings - Fork 476
Expand file tree
/
Copy pathUIItem.cs
More file actions
672 lines (574 loc) · 20.7 KB
/
UIItem.cs
File metadata and controls
672 lines (574 loc) · 20.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
using Castle.Core.Logging;
using System;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Windows;
using System.Windows.Automation;
using TestStack.White.AutomationElementSearch;
using TestStack.White.Configuration;
using TestStack.White.Factory;
using TestStack.White.InputDevices;
using TestStack.White.Recording;
using TestStack.White.UIA;
using TestStack.White.UIItemEvents;
using TestStack.White.UIItems.Actions;
using TestStack.White.UIItems.Finders;
using TestStack.White.UIItems.Scrolling;
using TestStack.White.UIItems.WindowItems;
using TestStack.White.WindowsAPI;
using Action = TestStack.White.UIItems.Actions.Action;
using Point = System.Windows.Point;
namespace TestStack.White.UIItems
{
//TODO Make this class smaller
//TODO ToolStrip and Similar kind of support
public class UIItem : IUIItem
{
#region Fields
protected readonly AutomationElement automationElement;
protected IActionListener actionListener;
internal static readonly Mouse mouse = Mouse.Instance;
protected readonly PrimaryUIItemFactory factory;
internal readonly Keyboard keyboard = Keyboard.Instance;
protected IScrollBars scrollBars;
private static readonly ScreenCapture ScreenCapture = new ScreenCapture();
private AutomationEventHandler handler;
protected readonly ILogger Logger = CoreAppXmlConfiguration.Instance.LoggerFactory.Create(typeof(UIItem));
#endregion
#region Constructor
protected UIItem()
{
}
public UIItem(AutomationElement automationElement, IActionListener actionListener)
{
if (null == automationElement) throw new NullReferenceException();
this.automationElement = automationElement;
this.actionListener = actionListener;
factory = new PrimaryUIItemFactory(new AutomationElementFinder(automationElement));
}
#endregion
#region Automation
/// <summary>
/// Implements <see cref="IUIItem.AutomationElement"/>
/// </summary>
public virtual AutomationElement AutomationElement
{
get { return automationElement; }
}
/// <summary>
/// Implements <see cref="IUIItem.Framework"/>
/// </summary>
public virtual WindowsFramework Framework
{
get { return WindowsFrameworkExtensions.FromFrameworkId(automationElement.Current.FrameworkId); }
}
/// <summary>
/// Implements <see cref="IUIItem.ActionListener"/>
/// </summary>
public virtual IActionListener ActionListener
{
get { return actionListener; }
}
/// <summary>
/// Implements <see cref="IUIItem.GetElement(SearchCriteria)"/>
/// </summary>
public virtual AutomationElement GetElement(SearchCriteria searchCriteria)
{
return
new AutomationElementFinder(automationElement).FindDescendantRaw(
searchCriteria.AutomationSearchCondition);
}
#endregion
#region State Properties
/// <summary>
/// Implements <see cref="IUIItem.Enabled"/>
/// </summary>
public virtual bool Enabled
{
get { return automationElement.Current.IsEnabled; }
}
/// <summary>
/// Implements <see cref="IUIItem.IsOffScreen"/>
/// </summary>
public virtual bool IsOffScreen
{
get { return automationElement.Current.IsOffscreen; }
}
/// <summary>
/// Implements <see cref="IUIItem.Visible"/>
/// </summary>
public virtual bool Visible
{
get { return !automationElement.Current.IsOffscreen; }
}
/// <summary>
/// Implements <see cref="IUIItem.IsFocussed"/>
/// </summary>
public virtual bool IsFocussed
{
get { return automationElement.Current.HasKeyboardFocus; }
}
/// <summary>
/// Implements <see cref="IUIItem.ItemStatus"/>
/// </summary>
public virtual string ItemStatus { get { return automationElement.Current.ItemStatus; } }
/// <summary>
/// Implements <see cref="IUIItem.Name"/>
/// </summary>
public virtual string Name
{
get
{
try
{
return automationElement.Current.Name;
}
catch (InvalidOperationException)
{
return automationElement.Current.Name;
}
}
}
/// <summary>
/// Implements <see cref="IUIItem.Id"/>
/// </summary>
public virtual string Id
{
get { return automationElement.Current.AutomationId; }
}
/// <summary>
/// Implements <see cref="IUIItem.PrimaryIdentification"/>
/// </summary>
public virtual string PrimaryIdentification
{
get { return automationElement.Current.FrameworkId.Equals(WindowsFramework.Win32.FrameworkId()) ? Name : Id; }
}
/// <summary>
/// Implements <see cref="IUIItem.HelpText"/>
/// </summary>
public virtual string HelpText { get { return automationElement.Current.HelpText; } }
/// <summary>
/// Implements <see cref="IUIItem.AccessKey"/>
/// </summary>
public virtual string AccessKey
{
get { return automationElement.Current.AccessKey; }
}
/// <summary>
/// Implements <see cref="IUIItem.ScrollBars"/>
/// </summary>
public virtual IScrollBars ScrollBars
{
get { return scrollBars ?? (scrollBars = ScrollerFactory.CreateBars(automationElement, actionListener)); }
}
#endregion
#region Dimension Properties
/// <summary>
/// Implements <see cref="IUIItem.Location"/>
/// </summary>
public virtual Point Location
{
get { return automationElement.Current.BoundingRectangle.TopLeft; }
}
/// <summary>
/// Implements <see cref="IUIItem.Bounds"/>
/// </summary>
public virtual Rect Bounds
{
get { return automationElement.Current.BoundingRectangle; }
}
/// <summary>
/// Implements <see cref="IUIItem.ClickablePoint"/>
/// </summary>
public virtual Point ClickablePoint
{
get { return (Point)Property(AutomationElement.ClickablePointProperty); }
}
#endregion
#region Graphics
/// <summary>
/// Implements <see cref="IUIItem.BorderColor"/>
/// </summary>
public virtual Color BorderColor
{
get { return VisibleImage.GetPixel(0, 0); }
}
/// <summary>
/// Implements <see cref="IUIItem.VisibleImage"/>
/// </summary>
public virtual Bitmap VisibleImage
{
get
{
if (automationElement.Current.NativeWindowHandle == 0)
{
// In wpf controls does not have window handles, falling back to screencapture.
return ScreenCapture.CaptureArea(Bounds);
}
var displayedItem = new DisplayedItem(new IntPtr(automationElement.Current.NativeWindowHandle));
using (System.Drawing.Image image = displayedItem.GetVisibleImage())
return new Bitmap(image);
}
}
/// <summary>
/// Implements <see cref="IUIItem.DrawHighlight()"/>
/// </summary>
public virtual void DrawHighlight()
{
DrawHighlight(Color.Red);
}
/// <summary>
/// Implements <see cref="IUIItem.DrawHighlight(Color)"/>
/// </summary>
public virtual void DrawHighlight(Color color)
{
var rectangle = AutomationElement.Current.BoundingRectangle;
if (rectangle != Rect.Empty)
{
new Drawing.FrameRectangle(color, rectangle).Highlight();
}
}
/// <summary>
/// Implements <see cref="IUIItem.Capture"/>
/// </summary>
public virtual Bitmap Capture()
{
return Desktop.CaptureScreenshot(Bounds);
}
#endregion
#region Interaction
/// <summary>
/// Implements <see cref="IUIItem.Focus"/>
/// </summary>
public virtual void Focus()
{
actionListener.ActionPerforming(this);
try
{
automationElement.SetFocus();
ActionPerformed();
}
catch
{
Logger.Debug("Could not set focus on " + AutomationElement.Display());
}
}
/// <summary>
/// Implements <see cref="IUIItem.SetForeground"/>
/// </summary>
public virtual void SetForeground()
{
NativeWindow.SetForegroundWindow(new IntPtr(automationElement.Current.NativeWindowHandle));
}
/// <summary>
/// Implements <see cref="IUIItem.Visit"/>
/// </summary>
public virtual void Visit(IWindowControlVisitor windowControlVisitor)
{
windowControlVisitor.Accept(this);
}
/// <summary>
/// Implements <see cref="IUIItem.Invoke"/>
/// </summary>
public virtual void Invoke()
{
var invokePattern = (InvokePattern)Pattern(InvokePattern.Pattern);
if (invokePattern != null) invokePattern.Invoke();
}
/// <summary>
/// Implements <see cref="IUIItem.Click"/>
/// </summary>
public virtual void Click()
{
actionListener.ActionPerforming(this);
PerformIfValid(ClickCenter);
}
private void ClickCenter()
{
PerformRelativeClick(0.5f, 0.5f);
}
/// <summary>
/// Performs mouse click at relative location 1,1 is bottom right
/// </summary>
public virtual void RelativeClick(float x, float y)
{
actionListener.ActionPerforming(this);
PerformIfValid(() => PerformRelativeClick(x, y));
}
/// <summary>
/// Performs mouse click at an absolut location from top left
/// </summary>
public virtual void AbsoluteClick(Point offset)
{
actionListener.ActionPerforming(this);
PerformIfValid(() => PerformOffsetClick(offset));
}
/// <summary>
/// Implements <see cref="IUIItem.DoubleClick"/>
/// </summary>
public virtual void DoubleClick()
{
actionListener.ActionPerforming(this);
PerformIfValid(() => mouse.DoubleClick(Bounds.Center(), actionListener));
}
/// <summary>
/// Implements <see cref="IUIItem.RightClick()"/>
/// </summary>
public virtual void RightClick()
{
RightClickAt(Bounds.Center());
}
/// <summary>
/// Implements <see cref="IUIItem.RightClickAt(Point)"/>
/// </summary>
public virtual void RightClickAt(Point point)
{
actionListener.ActionPerforming(this);
mouse.RightClick(point, actionListener);
}
/// <summary>
/// Implements <see cref="IUIItem.KeyIn"/>
/// </summary>
public virtual void KeyIn(KeyboardInput.SpecialKeys key)
{
actionListener.ActionPerforming(this);
keyboard.PressSpecialKey(key, actionListener);
}
/// <summary>
/// Implements <see cref="IUIItem.SetValue"/>
/// </summary>
public virtual void SetValue(object value)
{
}
/// <summary>
/// Implements <see cref="IUIItem.Enter"/>
/// </summary>
public virtual void Enter(string value)
{
var pattern = Pattern(ValuePattern.Pattern) as ValuePattern;
if (pattern != null) pattern.SetValue(string.Empty);
if (string.IsNullOrEmpty(value)) return;
actionListener.ActionPerformed(Action.WindowMessage);
EnterData(value);
}
#endregion
#region Recording
/// <summary>
/// Implements <see cref="IUIItem.UnHookEvents"/>
/// </summary>
public virtual void UnHookEvents()
{
}
/// <summary>
/// Implements <see cref="IUIItem.HookEvents"/>
/// </summary>
public virtual void HookEvents(IUIItemEventListener eventListener)
{
}
#endregion
#region Debugging
/// <summary>
/// Implements <see cref="IUIItem.ErrorProviderMessage"/>
/// </summary>
public virtual string ErrorProviderMessage(Window window)
{
var element =
AutomationElement.FromPoint(automationElement.Current.BoundingRectangle.ImmediateExteriorEast());
if (element == null) return null;
var errorProviderBounds = element.Current.BoundingRectangle;
if (automationElement.Current.BoundingRectangle.Right != errorProviderBounds.Left) return null;
mouse.Location = errorProviderBounds.Center();
actionListener.ActionPerformed(Action.WindowMessage);
return window.ToolTip.Text;
}
/// <summary>
/// Implements <see cref="IUIItem.LogStructure"/>
/// </summary>
public virtual void LogStructure()
{
Logger.Info(Debug.Details(AutomationElement));
}
#endregion
#region Equality
/// <summary>
/// Implements <see cref="IUIItem.NameMatches"/>
/// </summary>
public virtual bool NameMatches(string text)
{
return Name.Equals(text);
}
/// <summary>
/// Implements <see cref="IUIItem.ValueOfEquals"/>
/// </summary>
public virtual bool ValueOfEquals(AutomationProperty property, object compareTo)
{
return Property(property).Equals(compareTo);
}
/// <summary>
/// Implements <see cref="IUIItem.Equals(object)"/>
/// </summary>
public override bool Equals(object other)
{
if (other == null)
{
return false;
}
var uiItem = other as IUIItem;
return uiItem != null && Equals(uiItem);
}
/// <summary>
/// Implements <see cref="IEquatable{T}.Equals(T)"/>
/// </summary>
public bool Equals(IUIItem other)
{
return other != null && Equals(automationElement, other.AutomationElement);
}
/// <summary>
/// Implements <see cref="IUIItem.GetHashCode()"/>
/// </summary>
public override int GetHashCode()
{
return automationElement.GetHashCode();
}
/// <summary>
/// Implements <see cref="IUIItem.ToString()"/>
/// </summary>
public override string ToString()
{
return string.Format("{0}. {1}", GetType().Name, automationElement.Display());
}
#endregion
#region Implementation from IActionListener
/// <summary>
/// Implements <see cref="IActionListener.ActionPerforming"/>
/// </summary>
public virtual void ActionPerforming(UIItem uiItem)
{
}
/// <summary>
/// Implements <see cref="IActionListener.ActionPerformed"/>
/// </summary>
public virtual void ActionPerformed(Action action)
{
actionListener.ActionPerformed(action);
}
#endregion
#region Public
/// <summary>
/// Make an <see cref="IUIItemContainer"/> out of the <see cref="IUIItem"/>
/// </summary>
/// <returns>Returns an <c><see cref="IUIItemContainer"/></c> if possibe</returns>
public virtual IUIItemContainer AsContainer()
{
if (Framework != WindowsFramework.Wpf)
{
Logger.Warn("Only WPF items should be treated as container items");
throw new WhiteException(string.Format(
"Cannot create a Container since the UI Item is not of the correct Framework Type {0}",
WindowsFramework.Wpf));
}
return new UIItemContainer(AutomationElement, ActionListener);
}
#endregion
#region Protected
protected virtual void ActionPerformed()
{
actionListener.ActionPerformed(Action.WindowMessage);
}
protected virtual void EnterData(string value)
{
var lines = value.Replace("\r\n", "\n").Split('\n');
keyboard.Send(lines[0], actionListener);
foreach (var line in lines.Skip(1))
{
keyboard.PressSpecialKey(KeyboardInput.SpecialKeys.RETURN);
keyboard.Send(line, actionListener);
}
}
protected virtual void HookClickEvent(IUIItemEventListener eventListener)
{
handler = delegate { eventListener.EventOccured(new UIItemClickEvent(this)); };
Automation.AddAutomationEventHandler(InvokePattern.InvokedEvent, automationElement, TreeScope.Element,
handler);
}
protected virtual void UnHookClickEvent()
{
Automation.RemoveAutomationEventHandler(InvokePattern.InvokedEvent, automationElement, handler);
}
protected virtual object Property(AutomationProperty automationProperty)
{
return automationElement.GetCurrentPropertyValue(automationProperty);
}
protected virtual T Pattern<T>()
{
var fieldInfo = typeof(T).GetField("Pattern", BindingFlags.Static | BindingFlags.Public);
var pattern = (AutomationPattern)fieldInfo.GetValue(null);
object patternObject;
if (automationElement.TryGetCurrentPattern(pattern, out patternObject))
{
return (T)patternObject;
}
return (T)(object)null;
}
protected virtual BasePattern Pattern(AutomationPattern pattern)
{
return Pattern(AutomationElement, pattern);
}
#endregion
#region Internal
internal static BasePattern Pattern(AutomationElement automationElement, AutomationPattern pattern)
{
object patternObject;
if (automationElement.TryGetCurrentPattern(pattern, out patternObject))
{
return (BasePattern)patternObject;
}
return null;
}
#endregion
#region Private
private void PerformIfValid(System.Action action)
{
var startTime = DateTime.Now;
var busyTimeout = CoreAppXmlConfiguration.Instance.BusyTimeout / 1000;
while (DateTime.Now.Subtract(startTime).TotalSeconds < busyTimeout)
{
if (Enabled && !IsOffScreen)
{
action();
return;
}
Thread.Sleep(500);
}
string message = null;
if (!Enabled)
message = "element not enabled";
else if (IsOffScreen)
message = "element is offscreen";
throw new AutomationException(string.Format("Cannot perform action on {0}, {1}", this, message), Debug.Details(AutomationElement));
}
private void PerformRelativeClick(float width, float height)
{
if (!Enabled) Logger.WarnFormat("Clicked on disabled item: {0}", ToString());
var bounds = Bounds;
if (bounds.IsEmpty)
{
throw new WhiteException(string.Format("Failed to click on {0}, bounds empty", ToString()));
}
mouse.Click(new Point(bounds.Left + (bounds.Width * width), bounds.Top + (bounds.Height * height)), actionListener);
}
private void PerformOffsetClick(Point offset)
{
if (!Enabled) Logger.WarnFormat("Clicked on disabled item: {0}", ToString());
var bounds = Bounds;
if (bounds.IsEmpty)
{
throw new WhiteException(string.Format("Failed to click on {0}, bounds empty", ToString()));
}
mouse.Click(new Point(bounds.Left + offset.X, bounds.Top + offset.Y), actionListener);
}
#endregion
}
}