APP-314 fix. Workflow now highlights asserts, presses, text fields etc. as intended#270
Closed
chinmayajha wants to merge 7 commits intomozarkai:mainfrom
Closed
APP-314 fix. Workflow now highlights asserts, presses, text fields etc. as intended#270chinmayajha wants to merge 7 commits intomozarkai:mainfrom
chinmayajha wants to merge 7 commits intomozarkai:mainfrom
Conversation
…c. as intended Fix to https://mozarkai-orchestrator.atlassian.net/browse/APP-314 Workflow already handled annotations, but the problem was in saving of the image. Commit fixes invalid timestamp format causing screenshot save failure (on windows) changes file saving behaviour, fixes workflow
Contributor
Author
Refactor screenshot saving logic to handle exceptions properly and raise an error if saving fails. Signed-off-by: Chinmay Jha <[email protected]>
Change logging levels from info to debug for certain warnings in action_keyword.py. Signed-off-by: Chinmay Jha <[email protected]>
Fixes NB-6
Resolved an issue where `Enter Text Using Keyboard` intermittently failed
for uppercase inputs.
Root cause:
- `_press_keycode_or_type_char` sent keycodes without SHIFT (metastate)
- Uppercase characters (e.g., 'N') were typed as lowercase ('n')
- Certain fields (e.g., IFSC) reject lowercase input, causing characters to be ignored
Fix:
- Detect uppercase characters and send keycode with `metastate=1` (SHIFT)
- Ensures correct uppercase input via Appium key events
Result:
- Uppercase text (e.g., "NPCI0000001") is entered correctly
- Input fields that enforce uppercase now work reliably
|
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.



Fix to https://mozarkai-orchestrator.atlassian.net/browse/APP-314
Workflow already handled annotations, but the problem was in saving of the image. Commit fixes invalid timestamp format causing screenshot save failure (on windows)
changes file saving behaviour, fixes workflow