├── .idea ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── uitest-server.iml └── workspace.xml ├── .pytest_cache └── v │ └── cache │ ├── lastfailed │ └── nodeids ├── README.md ├── Report ├── ExampleReport.html ├── TestResultReport.html ├── cov_profiler.html └── covdata.cov ├── __pycache__ ├── case.cpython-37.pyc ├── config.cpython-37.pyc ├── elementdb.cpython-37.pyc ├── function.cpython-37.pyc ├── interpret.cpython-37.pyc ├── keyworddb.cpython-37.pyc ├── profiler.cpython-37.pyc ├── test.cpython-37.pyc └── testcase.cpython-37.pyc ├── case.py ├── case.pyc ├── config.py ├── elementdb.py ├── elementdb.pyc ├── function.py ├── function.pyc ├── interpret.py ├── keyworddb.py ├── keyworddb.pyc ├── process.py ├── profiler.py ├── test.html ├── test.js ├── test_other.js └── testcase.py /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 15 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ApexVCS 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/uitest-server.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 107 | 108 | 109 | 110 | div_id 111 | showTestDetail 112 | HTML_TMPL 113 | chart_script 114 | stream 115 | showOutput 116 | font style="background:yellow 117 | hahahahah 118 | hahaha 119 | 17 120 | 999 121 | push.apply 122 | Chrome 123 | applyToTag 124 | cb 125 | push.2y7i._typeof 126 | wewewewewewewewewew 127 | wocao 128 | {'scriptId': '17' 129 | 'scriptId': '17' 130 | requestId 131 | response 132 | 133 | 134 | 135 | 170 | 171 | 172 | 173 | 174 | true 175 | DEFINITION_ORDER 176 | 177 | 178 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 |