├── 3rdPartyTools └── AutoIt │ ├── Au3Info.exe │ ├── AutoItX.chm │ ├── AutoItX3.dll │ └── AutoIt_License.html ├── Build.bat ├── COPYRIGHT.txt ├── LICENSE.txt ├── MANIFEST.in ├── Make.bat ├── ReadMe.md ├── ReadMe.txt ├── doc ├── AutoItLibrary.html └── _MakeThisFolder_.txt ├── setup.py ├── src └── AutoItLibrary │ ├── Counter.py │ ├── Logger.py │ └── __init__.py └── tests ├── CalculatorGUIMap.py ├── Calculator_Test_Cases.html ├── RobotIDE.bat ├── RunTests.bat └── __init__.html /3rdPartyTools/AutoIt/Au3Info.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/3rdPartyTools/AutoIt/Au3Info.exe -------------------------------------------------------------------------------- /3rdPartyTools/AutoIt/AutoItX.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/3rdPartyTools/AutoIt/AutoItX.chm -------------------------------------------------------------------------------- /3rdPartyTools/AutoIt/AutoItX3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/3rdPartyTools/AutoIt/AutoItX3.dll -------------------------------------------------------------------------------- /3rdPartyTools/AutoIt/AutoIt_License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/3rdPartyTools/AutoIt/AutoIt_License.html -------------------------------------------------------------------------------- /Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/Build.bat -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/Make.bat -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/ReadMe.md -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /doc/AutoItLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/doc/AutoItLibrary.html -------------------------------------------------------------------------------- /doc/_MakeThisFolder_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/doc/_MakeThisFolder_.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/setup.py -------------------------------------------------------------------------------- /src/AutoItLibrary/Counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/src/AutoItLibrary/Counter.py -------------------------------------------------------------------------------- /src/AutoItLibrary/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/src/AutoItLibrary/Logger.py -------------------------------------------------------------------------------- /src/AutoItLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/src/AutoItLibrary/__init__.py -------------------------------------------------------------------------------- /tests/CalculatorGUIMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/tests/CalculatorGUIMap.py -------------------------------------------------------------------------------- /tests/Calculator_Test_Cases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/tests/Calculator_Test_Cases.html -------------------------------------------------------------------------------- /tests/RobotIDE.bat: -------------------------------------------------------------------------------- 1 | :: 2 | :: CMD file to start the Robot IDE in this directory 3 | :: 4 | ride.py . 5 | -------------------------------------------------------------------------------- /tests/RunTests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/tests/RunTests.bat -------------------------------------------------------------------------------- /tests/__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qitaos/robotframework-autoitlibrary/HEAD/tests/__init__.html --------------------------------------------------------------------------------