-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[py] property strict_timestamp was added #14168
[py] property strict_timestamp was added #14168
Conversation
PR Reviewer Guide 🔍
|
PR Code Suggestions ✨
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding this
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## trunk #14168 +/- ##
=======================================
Coverage 57.18% 57.18%
=======================================
Files 89 89
Lines 5514 5514
Branches 232 232
=======================================
Hits 3153 3153
Misses 2129 2129
Partials 232 232 ☔ View full report in Codecov by Sentry. |
ok. squash commits as something like |
We squash as part of the GitHub merge process. Hmm, I'm not sure why that chrome test is failing in this PR but not on trunk, but at least it is obviously unrelated. |
Thanks @milahu & @iampopovich; sorry that I made a one-line change more difficult than it needed to be. |
* allow zipping profiles with files and directories stamped earlier than 1980 --------- Co-authored-by: Titus Fortner <[email protected]>
User description
Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
according to #14143 property was added to configure timestamp mode
Motivation and Context
Types of changes
Checklist
PR Type
Enhancement, Bug fix
Description
_strict_timestamps
attribute to theFirefoxProfile
class to manage timestamp behavior.strict_timestamps
property.encoded
method to utilize thestrict_timestamps
property when creating aZipFile
.Changes walkthrough 📝
firefox_profile.py
Add strict_timestamps property to FirefoxProfile class
py/selenium/webdriver/firefox/firefox_profile.py
_strict_timestamps
attribute with getter and setter methods.strict_timestamps
property intoZipFile
instantiation.