[py] webkitgtk: log_path -> log_output#14618
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
f0f9ea5 to
f504648
Compare
AutomatedTester
left a comment
There was a problem hiding this comment.
This change is likely to break for people if they are using kwargs. We should add the new one and have the other item deprecated
2e378ee to
6ae3bd4
Compare
|
Should be done now |
|
LGTM. |
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
Changes
log_pathtolog_outputbecause it is an outdated parameter andlog_outputis the updated parameterMotivation and Context
super.__init__still callslog_filewhich is not there anymore so this PR updates it tolog_output.Types of changes
Checklist
PR Type
enhancement
Description
log_pathtolog_outputin theServiceclass to reflect updated naming conventions.log_outputparameter, ensuring compatibility with the updated API.super.__init__was incorrectly referencing a non-existentlog_file.Changes walkthrough 📝
service.py
Update parameter from `log_path` to `log_output` in Service classpy/selenium/webdriver/webkitgtk/service.py
log_pathtolog_output.log_outputinstead oflog_file.