Skip to content

Commit e6c5470

Browse files
Update DetailView.cs
1 parent b996220 commit e6c5470

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

AudioCuesheetEditor.End2EndTests/Models/DetailView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ internal async Task EditTrackAsync(string? artist = null, string? title = null)
5252
await _page.Locator(".mud-popover-open").WaitForAsync(new() { State = WaitForSelectorState.Visible });
5353
await _page.Keyboard.PressAsync("Escape");
5454
// Click outside the autocomplete to have an focus lost event for getting the value written to model
55-
await _page.GetByRole(AriaRole.Heading, new() { Name = "Playback" }).ClickAsync();
55+
await _page.GetByRole(AriaRole.Heading, new() { Name = "Playback" }).ClickAsync(new() { Force = true });
5656
await _page.WaitForTimeoutAsync(100);
5757
}
5858
if (title != null)
@@ -63,7 +63,7 @@ internal async Task EditTrackAsync(string? artist = null, string? title = null)
6363
await _page.Locator(".mud-popover-open").WaitForAsync(new() { State = WaitForSelectorState.Visible });
6464
await _page.Keyboard.PressAsync("Escape");
6565
// Click outside the autocomplete to have an focus lost event for getting the value written to model
66-
await _page.GetByRole(AriaRole.Heading, new() { Name = "Playback" }).ClickAsync();
66+
await _page.GetByRole(AriaRole.Heading, new() { Name = "Playback" }).ClickAsync(new() { Force = true });
6767
await _page.WaitForTimeoutAsync(100);
6868
}
6969
}

0 commit comments

Comments
 (0)