├── .gitignore ├── Assistant └── assistant.robot ├── Dockerfile ├── LICENSE ├── README.md ├── distbot ├── AssistantLibrary.py ├── __init__.py ├── __main__.py └── tasksdb.py ├── docker-compose.yml ├── examples ├── base │ ├── Config.robot │ ├── ExtJS.robot │ ├── getCaseInsensitiveExtJSQuery.js │ ├── getElementByExtJSQuery.js │ └── github.robot ├── demo │ └── logindemo.robot └── logindemo2.robot ├── run.bat ├── scripts ├── distbot └── distbot.bat └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Assistant/assistant.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/Assistant/assistant.robot -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/README.md -------------------------------------------------------------------------------- /distbot/AssistantLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/distbot/AssistantLibrary.py -------------------------------------------------------------------------------- /distbot/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /distbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/distbot/__main__.py -------------------------------------------------------------------------------- /distbot/tasksdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/distbot/tasksdb.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/base/Config.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/examples/base/Config.robot -------------------------------------------------------------------------------- /examples/base/ExtJS.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/examples/base/ExtJS.robot -------------------------------------------------------------------------------- /examples/base/getCaseInsensitiveExtJSQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/examples/base/getCaseInsensitiveExtJSQuery.js -------------------------------------------------------------------------------- /examples/base/getElementByExtJSQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/examples/base/getElementByExtJSQuery.js -------------------------------------------------------------------------------- /examples/base/github.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/examples/base/github.robot -------------------------------------------------------------------------------- /examples/demo/logindemo.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/examples/demo/logindemo.robot -------------------------------------------------------------------------------- /examples/logindemo2.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/examples/logindemo2.robot -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/run.bat -------------------------------------------------------------------------------- /scripts/distbot: -------------------------------------------------------------------------------- 1 | python -m distbot %* 2 | -------------------------------------------------------------------------------- /scripts/distbot.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python -m distbot %* -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeevnaikte/distbot/HEAD/setup.py --------------------------------------------------------------------------------