-
Notifications
You must be signed in to change notification settings - Fork 765
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
Python 3 12 #1916
Merged
Merged
Python 3 12 #1916
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c52437b
Initial Python 3.12 support
emanlove f263368
Triage atest
emanlove f3f4111
Updated tested against Robot Framework versions
emanlove ff8cfb6
Updated setup.py with 3.12 support
emanlove 305b8f6
Updated Selenium Python versions to latest
emanlove 948332a
Updated the "Install drivers via selenium-manager" CI step
emanlove File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
8 changes: 8 additions & 0 deletions
8
...d_files/test_selenium_options_parser.test_parse_options_string_errors_py3_12.approved.txt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Selenium options string errors | ||
|
||
0) method("arg1) ('unterminated string literal (detected at line 1)', (1, 8)) | ||
1) method(arg1") ('unterminated string literal (detected at line 1)', (1, 12)) | ||
2) method(arg1) Unable to parse option: "method(arg1)" | ||
3) attribute=arg1 Unable to parse option: "attribute=arg1" | ||
4) attribute=webdriver Unable to parse option: "attribute=webdriver" | ||
5) method(argument="value") Unable to parse option: "method(argument="value")" |
8 changes: 8 additions & 0 deletions
8
...d_files/test_selenium_service_parser.test_parse_service_string_errors_py3_12.approved.txt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Selenium service string errors | ||
|
||
0) attribute=arg1 Unable to parse service: "attribute=arg1" | ||
1) attribute='arg1 ('unterminated string literal (detected at line 1)', (1, 11)) | ||
2) attribute=['arg1' ('unexpected EOF in multi-line statement', (1, 0)) | ||
3) attribute=['arg1';'arg2'] ('unexpected EOF in multi-line statement', (1, 0)) | ||
4) attribute['arg1'] Unable to parse service: "attribute['arg1']" | ||
5) attribute=['arg1'] attribute=['arg2'] Unable to parse service: "attribute=['arg1'] attribute=['arg2']" |
This file contains 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
This file contains 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
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.
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.
I think Approval tests did fix this problem and skipping in Windows could be removed now days. Doesn’t have to be this PR tough.