-
-
Notifications
You must be signed in to change notification settings - Fork 303
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
feat: add support for export/import actions in json format #1491
Conversation
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.
Thank you!🙏 I will test this later, but looks great!
If it's not too much, could you please also update the documentation? Specifically, I'm referring to the top image and Saved Gestures section here: https://appium.github.io/appium-inspector/latest/session-inspector/gestures/
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.
Tested this in the Electron app and it does largely work :) I did find a few issues though.
@eglitise Thank you for the feedback. I was occupied with other tasks and was unable to address the comments earlier. I will prioritize these items and aim to complete them within this week. |
59885a0
to
1a2e40e
Compare
534ecff
to
0dbf16f
Compare
@@ -16,6 +17,7 @@ import { | |||
} from '../utils/source-parsing'; | |||
import {log} from '../utils/logger'; | |||
import {showError} from './Session'; | |||
import {SAVED_FRAMEWORK, SET_SAVED_GESTURES} from '../../shared/setting-defs'; |
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.
This was accidentally removed from line 4 and re-added here :)
Also there's some stray changes in |
Thanks again for implementing this! 👍 |
) * add file saver dependency * feat: add support for export/import actions in json format * Use native file download instead of file-saver * remove file-save from dependencies * Update docs with latest changes * doc update * Add detailed errors for invalid json files * Fix formatting * Fix import order * CR comment fixes * Fix typo * Code review fixes * update icon * fix linting and styling * Fix sugggestions * avoid state mutation with duplicate actions * fix linting error
Fixes: #843