You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Aquality.Selenium.Core/src/Aquality.Selenium.Core/Forms/Form.cs
+42-12Lines changed: 42 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -41,30 +41,60 @@ public abstract class Form<T> : IForm where T : IElement
41
41
42
42
/// <summary>
43
43
/// List of pairs uniqueName-element to be used for dump saving and comparing.
44
-
/// By default, only currently displayed elements to be used (<see cref="ElementsInitializedAsDisplayed"/>).
45
-
/// You can override this property with defined <see cref="AllElements"/>, <see cref="DisplayedElements"/> or your own element set.
44
+
/// By default, only currently displayed elements to be used (<see cref="DisplayedElements"/>).
45
+
/// You can override this property with defined <see cref="AllElements"/>, <see cref="AllCurrentFormElements"/>, <see cref="ElementsInitializedAsDisplayed"/> or your own element set.
Copy file name to clipboardExpand all lines: Aquality.Selenium.Core/tests/Aquality.Selenium.Core.Tests/Visualization/FormDumpTests.cs
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,15 @@ public void Should_BePossibleTo_SaveAndCompareWithDump_WithCustomName_WhenAllEle
96
96
Assert.That(customForm.Dump.Compare("All elements"),Is.EqualTo(0),"Some elements should be failed to take image, but difference should be around zero");
Assert.That(customForm.Dump.Compare("CurrentForm elements"),Is.EqualTo(0),"Some elements should be failed to take image, but difference should be around zero");
0 commit comments