gitextract_402wqmeg/ ├── Dockerfile ├── LICENSE ├── README.md ├── auto_auth/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── automatic/ │ ├── __init__.py │ ├── asgi.py │ ├── element/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── keywords/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures/ │ │ │ └── initial_data.json │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── management/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── settings/ │ │ ├── __init__.py │ │ └── common.py │ ├── signals.py │ ├── static/ │ │ ├── css/ │ │ │ ├── ak-base-style.css │ │ │ ├── ak-schedule.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrapValidator.css │ │ │ ├── font-awesome/ │ │ │ │ ├── css/ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ └── font-awesome.css │ │ │ │ ├── font/ │ │ │ │ │ └── FontAwesome.otf │ │ │ │ ├── fonts/ │ │ │ │ │ └── FontAwesome.otf │ │ │ │ ├── less/ │ │ │ │ │ ├── animated.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── extras.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ └── scss/ │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bootstrap.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── font-awesome-ie7.scss │ │ │ │ └── font-awesome.scss │ │ │ ├── font-awesome.css │ │ │ ├── jquery-ui.css │ │ │ ├── login-app.css │ │ │ ├── login-vendor.css │ │ │ ├── page-v3/ │ │ │ │ ├── ak-master-page-v3.css │ │ │ │ └── ak-master-page-v3style.css │ │ │ └── wheelmenu.css │ │ ├── js/ │ │ │ ├── automagic.js │ │ │ ├── back-to-top.js │ │ │ ├── bootstrapValidator.js │ │ │ ├── casemanage.js │ │ │ ├── common.js │ │ │ ├── jquery-ui.js │ │ │ ├── jquery.wheelmenu.js │ │ │ ├── keyword.js │ │ │ └── taskmanage.js │ │ ├── muti_select/ │ │ │ ├── css/ │ │ │ │ ├── multi.css │ │ │ │ └── style.css │ │ │ └── src/ │ │ │ └── MultiSelectDropList.js │ │ └── zTree_v3/ │ │ ├── css/ │ │ │ ├── awesomeStyle/ │ │ │ │ ├── awesome.css │ │ │ │ ├── awesome.less │ │ │ │ └── fa.less │ │ │ ├── demo.css │ │ │ ├── metroStyle/ │ │ │ │ └── metroStyle.css │ │ │ └── zTreeStyle/ │ │ │ └── zTreeStyle.css │ │ └── js/ │ │ ├── jquery.ztree.all.js │ │ ├── jquery.ztree.core.js │ │ ├── jquery.ztree.excheck.js │ │ ├── jquery.ztree.exedit.js │ │ └── jquery.ztree.exhide.js │ ├── templates/ │ │ ├── 404.html │ │ ├── 500.html │ │ ├── base.html │ │ ├── comingsoon.html │ │ ├── element/ │ │ │ └── element.html │ │ ├── frame.html │ │ ├── index.html │ │ ├── keywords/ │ │ │ └── keyword.html │ │ ├── management/ │ │ │ ├── moduleadd.html │ │ │ ├── moduleview.html │ │ │ ├── productadd.html │ │ │ ├── productlist.html │ │ │ ├── productview.html │ │ │ ├── projectadd.html │ │ │ ├── projectlist.html │ │ │ ├── projectview.html │ │ │ └── syslog.html │ │ ├── nav.html │ │ ├── oauth/ │ │ │ └── userlist.html │ │ ├── registration/ │ │ │ └── login.html │ │ ├── testcase/ │ │ │ ├── caseadd.html │ │ │ ├── casecopy.html │ │ │ ├── caseedit.html │ │ │ ├── caselist.html │ │ │ └── caseview.html │ │ ├── testtask/ │ │ │ ├── taskadd.html │ │ │ ├── taskedit.html │ │ │ └── tasklist.html │ │ └── webinterface/ │ │ └── webinterface.html │ ├── testcase/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── testtask/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── urls.py │ ├── webinterface/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── wsgi.py ├── docker-compose.yml ├── init.sh ├── insertkeyword.sql ├── manage.py ├── requirements/ │ ├── base.txt │ └── seleniumreq.txt ├── seleniumkeyword/ │ ├── AddCase.py │ ├── Base.py │ ├── CustomKeyword.py │ ├── HTMLTestRunner.py │ ├── README.MD │ ├── RestApiUtil.py │ ├── SimulatorUtil.py │ ├── TestSuite.py │ ├── __init__.py │ ├── data/ │ │ └── readme.md │ ├── mwupgrade.py │ ├── popautomagic.py │ ├── result/ │ │ └── highcharts.js │ ├── sendlog/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── guitest.py │ │ ├── mysetup.py │ │ ├── randip.py │ │ ├── randomip.py │ │ ├── send.config │ │ ├── sendingdata.py │ │ ├── syslogc.py │ │ ├── tcpsendingsyslog.py │ │ ├── tcpsendtest.py │ │ ├── udpsendingsyslog.py │ │ └── weighted_choice.py │ ├── settings.py │ ├── testrail.py │ └── testraildemo.py └── start.py