Skip to content
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
103af24
Run continuation asynchronously in context of events
nvborisenko Nov 14, 2025
031d721
Add unit test
nvborisenko Jan 12, 2026
2adcb7c
Update README.md
nvborisenko Jan 27, 2026
42e63be
Revert "Update README.md"
nvborisenko Jan 27, 2026
811a196
Merge remote-tracking branch 'upstream/main' into continuation-context
nvborisenko Jan 27, 2026
f413f93
Fix collection was modified issue
nvborisenko Jan 27, 2026
a5a51d7
Revert "Fix collection was modified issue"
nvborisenko Jan 27, 2026
a976a91
RunContinuationsAsynchronously for RejectOn method
nvborisenko Jan 29, 2026
a1f8a25
Merge remote-tracking branch 'upstream/main' into continuation-context
nvborisenko Jan 30, 2026
d7df026
Minimize race condition when awaiting navigation events
nvborisenko Jan 30, 2026
b5adaa7
Temporary increase test timeout to avoid interruption
nvborisenko Jan 30, 2026
249deb0
Default task scheduler
nvborisenko Jan 30, 2026
795cf7b
Remove event handler
nvborisenko Jan 31, 2026
fa760ec
Thread safe changing load states
nvborisenko Jan 31, 2026
ba153bc
Avoid UnobserveException in ContinueWith
nvborisenko Jan 31, 2026
82a8a7a
Return back 30s test timeout
nvborisenko Jan 31, 2026
74290cb
Revert "Avoid UnobserveException in ContinueWith"
nvborisenko Feb 5, 2026
df39fd5
Revert "Remove event handler"
nvborisenko Feb 5, 2026
fbb6c42
Revert "Default task scheduler"
nvborisenko Feb 5, 2026
3efaecb
Return original List type for loadStates
nvborisenko Feb 5, 2026
e970e45
Merge remote-tracking branch 'upstream/main' into continuation-context
nvborisenko Apr 2, 2026
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
2 changes: 1 addition & 1 deletion src/Playwright/Core/Waiter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ internal Task<object> WaitForEventAsync(object eventSource, string e)
{
var info = eventSource.GetType().GetEvent(e) ?? eventSource.GetType().BaseType.GetEvent(e);

var eventTsc = new TaskCompletionSource<T>();
var eventTsc = new TaskCompletionSource<T>(TaskCreationOptions.RunContinuationsAsynchronously);
void EventHandler(object sender, T e)
{
try
Expand Down
Loading