Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anoopsimon/json-editor-v2
https://github.com/anoopsimon/json-editor-v2
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/anoopsimon/json-editor-v2
- Owner: anoopsimon
- Created: 2024-06-02T11:07:34.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-04T04:15:34.000Z (5 months ago)
- Last Synced: 2024-06-04T13:19:29.812Z (5 months ago)
- Language: JavaScript
- Size: 261 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Json Toolsets
1. Excel to JSON converter - JS & Python
Implemented as two projects using Typescript as well as Python. Refer readme files for details.
### Overview
Input : Excel Workbook ( `.xlsx`)Output : `JSON` file [Each Sheet will be an Array. Rows will be displayed as array in rows object]
Output format :
```
[
{
"sheetName": "Login",
"rows": [
{
"FieldName": "Hello",
"ControlType": "Input",
"Selector": "#ASDFG",
"TestCaseID": "TC123456"
},
{
"FieldName": "FieldZXCVB",
"ControlType": "Input",
"Selector": "#QWERT",
"TestCaseID": "TC234567"
},
{
"FieldName": "N",
"ControlType": "N1",
"Selector": "N2",
"TestCaseID": "N3"
},
{
"FieldName": "FieldASDFG",
"ControlType": "Input",
"Selector": "#ZXCVB",
"TestCaseID": "TC345678"
},
{
"FieldName": "John",
"ControlType": "Snow",
"Selector": "Is ",
"TestCaseID": "From"
}
]
},
{
"sheetName": "Product Selection",
"rows": [
{
"FieldName": "FieldQWERT",
"ControlType": "Input",
"Selector": "#ASDFG",
"TestCaseID": "Game"
},
{
"FieldName": "FieldZXCVB",
"ControlType": "Input",
"Selector": "#QWERT",
"TestCaseID": "Thrones"
},
{
"FieldName": "FieldASDFG",
"ControlType": "Input",
"Selector": "#ZXCVB",
"TestCaseID": "Of"
}
]
}
]
```2. JSON Table Editor
Edit Json as Table