Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UITest] Re-enable iOS Scrolling tests #20618

Merged
merged 4 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ protected override void FixtureTeardown()
this.Back();
}

//[Test]
//public void EntriesScrollingPageTest()
//{
// this.IgnoreIfPlatforms(new TestDevice[] { TestDevice.Android, TestDevice.Mac, TestDevice.Windows }, KeyboardScrolling.IgnoreMessage);
// KeyboardScrolling.EntriesScrollingTest(App, KeyboardScrollingGallery);
//}
[Test]
public void EntriesScrollingPageTest()
{
this.IgnoreIfPlatforms(new TestDevice[] { TestDevice.Android, TestDevice.Mac, TestDevice.Windows }, KeyboardScrolling.IgnoreMessage);
KeyboardScrolling.EntriesScrollingTest(App, KeyboardScrollingGallery);
}

//[Test]
//public void EditorsScrollingPageTest()
//{
// this.IgnoreIfPlatforms(new TestDevice[] { TestDevice.Android, TestDevice.Mac, TestDevice.Windows }, KeyboardScrolling.IgnoreMessage);
// KeyboardScrolling.EditorsScrollingTest(App, KeyboardScrollingGallery);
//}
[Test]
public void EditorsScrollingPageTest()
{
this.IgnoreIfPlatforms(new TestDevice[] { TestDevice.Android, TestDevice.Mac, TestDevice.Windows }, KeyboardScrolling.IgnoreMessage);
KeyboardScrolling.EditorsScrollingTest(App, KeyboardScrollingGallery);
}

//[Test]
//public void EntryNextEditorTest()
//{
// this.IgnoreIfPlatforms(new TestDevice[] { TestDevice.Android, TestDevice.Mac, TestDevice.Windows }, KeyboardScrolling.IgnoreMessage);
// KeyboardScrolling.EntryNextEditorScrollingTest(App, KeyboardScrollingGallery);
//}
[Test]
public void EntryNextEditorTest()
{
this.IgnoreIfPlatforms(new TestDevice[] { TestDevice.Android, TestDevice.Mac, TestDevice.Windows }, KeyboardScrolling.IgnoreMessage);
KeyboardScrolling.EntryNextEditorScrollingTest(App, KeyboardScrollingGallery);
}
}
}
2 changes: 1 addition & 1 deletion src/Core/src/Platform/iOS/KeyboardAutoManagerScroll.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ internal static async Task AdjustPositionDebounce()
// while we have the keyboard up, we need a delay to recalculate
// the height of the InputAccessoryView
if (IsKeyboardShowing && View?.InputAccessoryView is not null)
await Task.Delay(20);
await Task.Delay(30);

if (entranceCount == DebounceCount)
{
Expand Down
Loading