protractor
Version:
Webdriver E2E test wrapper for Angular.
21 lines (19 loc) • 518 B
HTML
<html ng-app="xApp">
<head>
<meta charset="utf-8">
<title>Angular.js Example</title>
<!-- Use version Angular 1.2.x since ngHint doesn't work with 1.3.x -->
<script src="../lib/angular_v1.2.9/angular.min.js"></script>
<script>
angular.module('xApp', []);
</script>
</head>
<body>
First name:<input ng-model="firstName" type="text"/>
<br>
Last name:<input ng-model="lastName" type="text"/>
<br>
Hello {{firstName}} {{lastName}}
</body>
</html>