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
/** | |
1. Observed the Network tab in chrome devtools | |
2. Found out the request that has all the data | |
3. Right click the data (response of the network request) -> Store as global variable (this basically makes the entire data | |
available in the Console of DevTools) - it’s stored under a variable called as temp1use that to convert my data. | |
4. Observed the payload, figured out how columnIds are mapped to the data that is present in the entire response JSON. | |
5. Wrote the following scripts to access the data: | |
**/ | |
let columns = temp1.table.columns; |