-
-
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
convert camelCase and snake_case to BIG_SNAKE_CASE
#14490
base: trunk
Are you sure you want to change the base?
Conversation
PR Reviewer Guide 🔍(Review updated until commit 7603d83)Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Latest suggestions up to 7603d83
Previous suggestionsSuggestions up to commit 3298686
|
Persistent review updated to latest commit 7603d83 |
@AutomatedTester can you please review this PR? |
Why are we making this change? This is for generated code that people will never use directly. This code is going to be deleted as we move to bidi |
@AutomatedTester, it was a TODO item which I thought of resolving |
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
A TODO
Convert the camelCase and snake_case to
BIG_SNAKE_CASE
inget_atom_name()
functionTypes of changes
Checklist
PR Type
enhancement
Description
get_atom_name
function to convert camelCase and snake_case to BIG_SNAKE_CASE using regex.re
module import to support regex operations in the code.Changes walkthrough 📝
gen_file.py
Enhance `get_atom_name` function for case conversion
javascript/private/gen_file.py
get_atom_name
function to handle different caseconversions.
re
module for regex operations.