Expect download method wrap#304
Merged
Merged
Conversation
Reviewer's GuideAdds a Browser.expect_download context manager that wraps Playwright’s page.expect_download and introduces tests covering basic download capture and predicate-based filtering. Sequence diagram for the new Browser.expect_download context managersequenceDiagram
actor Test
participant Browser
participant Page
participant Download
Test->>Browser: expect_download(predicate, timeout)
Browser->>Browser: log expect_download(timeout)
Browser->>Page: expect_download(predicate, timeout)
activate Page
Note over Test,Page: with block body triggers download action
Page-->>Download: create Download
Page-->>Browser: download context manager
deactivate Page
Browser-->>Test: context manager
Note over Test,Browser: after with block, download_info.value is Download
Test->>Download: access suggested_filename/save_as()
Updated class diagram for Browser with expect_downloadclassDiagram
class Browser {
Page page
Logger logger
+expect_response(url_or_predicate, timeout int)
+expect_download(predicate, timeout int)
}
class Page {
+expect_response(url_or_predicate, timeout int)
+expect_download(predicate, timeout int)
}
class Download {
+suggested_filename str
+save_as(path str)
}
Browser --> Page : uses
Page --> Download : creates
Browser ..> Download : returns_via_context_manager
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #304 +/- ##
==========================================
- Coverage 92.82% 92.72% -0.10%
==========================================
Files 19 19
Lines 2744 2750 +6
==========================================
+ Hits 2547 2550 +3
- Misses 197 200 +3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
mshriver
approved these changes
May 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
It will help in download related testing.
Summary by Sourcery
Add a browser-level wrapper for Playwright's expect_download context manager and cover it with tests.
New Features:
Tests: