@@ -51,11 +51,6 @@ internal async Task EditTrackAsync(string? artist = null, string? title = null)
5151 // Autocomplete overlay will pop up, so we close it
5252 await _page . Locator ( ".mud-popover-open" ) . WaitForAsync ( new ( ) { State = WaitForSelectorState . Visible } ) ;
5353 await _page . Keyboard . PressAsync ( "Escape" ) ;
54- await Task . WhenAll (
55- [
56- _page . Locator ( ".mud-overlay" ) . WaitForAsync ( new ( ) { State = WaitForSelectorState . Detached , Timeout = 5000 } ) ,
57- _page . Locator ( ".mud-popover-open" ) . WaitForAsync ( new ( ) { State = WaitForSelectorState . Hidden , Timeout = 5000 } ) ,
58- ] ) ;
5954 // Click outside the autocomplete to have an focus lost event for getting the value written to model
6055 await _page . GetByRole ( AriaRole . Heading , new ( ) { Name = "Playback" } ) . ClickAsync ( ) ;
6156 await _page . WaitForTimeoutAsync ( 100 ) ;
@@ -67,11 +62,6 @@ await Task.WhenAll(
6762 // Autocomplete overlay will pop up, so we close it
6863 await _page . Locator ( ".mud-popover-open" ) . WaitForAsync ( new ( ) { State = WaitForSelectorState . Visible } ) ;
6964 await _page . Keyboard . PressAsync ( "Escape" ) ;
70- await Task . WhenAll (
71- [
72- _page . Locator ( ".mud-overlay" ) . WaitForAsync ( new ( ) { State = WaitForSelectorState . Detached , Timeout = 5000 } ) ,
73- _page . Locator ( ".mud-popover-open" ) . WaitForAsync ( new ( ) { State = WaitForSelectorState . Hidden , Timeout = 5000 } ) ,
74- ] ) ;
7565 // Click outside the autocomplete to have an focus lost event for getting the value written to model
7666 await _page . GetByRole ( AriaRole . Heading , new ( ) { Name = "Playback" } ) . ClickAsync ( ) ;
7767 await _page . WaitForTimeoutAsync ( 100 ) ;
0 commit comments