我有一个自定义控件HtButton
,它继承自Control
.
我做了一个自定义FrameworkElementAutomationPeer
并覆盖了OnCreateAutomationPeer()
in HtButton
。
public class HtButtonAutomationPeer : FrameworkElementAutomationPeer
{
public HtButtonAutomationPeer([NotNull] FrameworkElement owner) : base(owner)
{
}
protected override string GetClassNameCore()
{
return "HtButton";
}
}
public abstract class HtButtonBase : Control
{
}
public class HtButton : HtButtonBase
{
protected override AutomationPeer OnCreateAutomationPeer()
{
return new HtButtonAutomationPeer(this);
}
}
要获得所有这些,我使用以下调用:
var myButtons = Window.GetMultiple(SearchCriteria.ByClassName("HtButton"));
我收到一份清单CustomUIItem
:
以下调用引发ArgumentException: At least two conditions must be specified.
:
myButtons = Window.GetMultiple(SearchCriteria.ByControlType(typeof(HtButton), WindowsFramework.Wpf));
foreach (IUIItem myControl in myButtons)
{
if (myControl is HtButton b)
{
}
}
Die Testmethode "HtFramework.WhiteUnitTest.HtPlcFrameworkTest.NavigationTest" hat eine Ausnahme ausgelöst:
System.ArgumentException: Es müssen mindestens zwei Bedingungen angegeben werden.
bei System.Windows.Automation.OrCondition..ctor(Condition[] conditions)
bei TestStack.White.UIItems.Finders.OrSearchCondition.get_AutomationCondition() in c:\TeamCity\buildAgent\work\89a20b30302799e\src\TestStack.White\UIItems\Finders\OrSearchCondition.cs:Zeile 27.
bei TestStack.White.UIItems.Finders.SearchCriteria.get_AutomationSearchCondition() in c:\TeamCity\buildAgent\work\89a20b30302799e\src\TestStack.White\UIItems\Finders\SearchCriteria.cs:Zeile 140.
bei TestStack.White.Factory.PrimaryUIItemFactory.CreateAll(SearchCriteria searchCriteria, ActionListener actionListener) in c:\TeamCity\buildAgent\work\89a20b30302799e\src\TestStack.White\Factory\PrimaryUIItemFactory.cs:Zeile 80.
bei TestStack.White.UIItems.Container.NonCachedContainerItemFactory.GetAll(SearchCriteria searchCriteria) in c:\TeamCity\buildAgent\work\89a20b30302799e\src\TestStack.White\UIItems\Container\NonCachedContainerItemFactory.cs:Zeile 30.
bei TestStack.White.UIItems.Container.CurrentContainerItemFactory.FindAll(SearchCriteria criteria) in c:\TeamCity\buildAgent\work\89a20b30302799e\src\TestStack.White\UIItems\Container\CurrentContainerItemFactory.cs:Zeile 78.
bei TestStack.White.UIItems.UIItemContainer.GetMultiple(SearchCriteria criteria) in c:\TeamCity\buildAgent\work\89a20b30302799e\src\TestStack.White\UIItems\UIItemContainer.cs:Zeile 205.
bei HtFramework.WhiteUnitTest.MainWindow.NavigateTo() in ...hiddenPath...\HtFramework.WhiteUnitTest\UnitTest1.cs:Zeile 34.
bei HtFramework.WhiteUnitTest.HtPlcFrameworkTest.<NavigationTest>d__6.MoveNext() in ...hiddenPath...\HtFramework.WhiteUnitTest\UnitTest1.cs:Zeile 196.
--- Ende der Stapelüberwachung vom vorhergehenden Ort, an dem die Ausnahme ausgelöst wurde ---
bei System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
bei System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
bei Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.ThreadOperations.ExecuteWithAbortSafety(Action action)
我已阅读以下帖子和文章但没有成功
- TestStack White 在 WPF 应用程序中找不到 TextBox
- https://teststackwhite.readthedocs.io/en/latest/AdvancedTopics/CustomUIItems/
- http://putridparrot.com/blog/teststack-white-gotchatips/
也许有人可以给我一个原始示例如何Foo()
触发FooEvent
.HtButton