Fix regressed tests

This commit is contained in:
Dean Herbert 2021-08-17 16:37:18 +09:00
parent bc86bafc08
commit 72dd18732d
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ protected override void LoadComplete()
[SetUpSteps]
public void SetUpSteps()
{
AddUntilStep("wait for load", () => panel.ChildrenOfType<SettingsPanel.SettingsSectionsContainer>().Any());
AddUntilStep("wait for load", () => panel.ChildrenOfType<GlobalKeyBindingsSection>().Any());
AddStep("Scroll to top", () => panel.ChildrenOfType<SettingsPanel.SettingsSectionsContainer>().First().ScrollToTop());
AddWaitStep("wait for scroll", 5);
}