├── .gitignore ├── AngularJSLibrary ├── __init__.py ├── angular.robot ├── angular_wait.robot ├── async.html ├── async.js ├── demo_ngcdk_dialog.robot ├── demo_phonecat.robot ├── demo_waitforangular.robot ├── ng-repeater.js ├── ng-repeater.min.js ├── test │ ├── testExecAsyncWithCallback.py │ └── testWaitForAngular.py ├── test_angular2.robot └── testserver.py.patch ├── CHANGES.rst ├── DEVELOPERS.rst ├── LICENSE ├── README.rst ├── TESTING.rst ├── docs └── index.html └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/.gitignore -------------------------------------------------------------------------------- /AngularJSLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/__init__.py -------------------------------------------------------------------------------- /AngularJSLibrary/angular.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/angular.robot -------------------------------------------------------------------------------- /AngularJSLibrary/angular_wait.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/angular_wait.robot -------------------------------------------------------------------------------- /AngularJSLibrary/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/async.html -------------------------------------------------------------------------------- /AngularJSLibrary/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/async.js -------------------------------------------------------------------------------- /AngularJSLibrary/demo_ngcdk_dialog.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/demo_ngcdk_dialog.robot -------------------------------------------------------------------------------- /AngularJSLibrary/demo_phonecat.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/demo_phonecat.robot -------------------------------------------------------------------------------- /AngularJSLibrary/demo_waitforangular.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/demo_waitforangular.robot -------------------------------------------------------------------------------- /AngularJSLibrary/ng-repeater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/ng-repeater.js -------------------------------------------------------------------------------- /AngularJSLibrary/ng-repeater.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/ng-repeater.min.js -------------------------------------------------------------------------------- /AngularJSLibrary/test/testExecAsyncWithCallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/test/testExecAsyncWithCallback.py -------------------------------------------------------------------------------- /AngularJSLibrary/test/testWaitForAngular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/test/testWaitForAngular.py -------------------------------------------------------------------------------- /AngularJSLibrary/test_angular2.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/test_angular2.robot -------------------------------------------------------------------------------- /AngularJSLibrary/testserver.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/AngularJSLibrary/testserver.py.patch -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /DEVELOPERS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/DEVELOPERS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/README.rst -------------------------------------------------------------------------------- /TESTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/TESTING.rst -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/docs/index.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-angularjs/HEAD/setup.py --------------------------------------------------------------------------------