| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/gavin/workspace/happymandarin/node_modules/protractor/exampleTypescript/ |
Upload File : |
# Protractor with Typescript
Typescript provides code auto completion and helpful hints with a text editor like Microsoft's Visual Studio Code or another text editor with Typescript support.
Note that this example uses TypeScript 2.0.
## Examples
There are two examples in this directory:
* Simple Protractor example
* Similar to the [github protractor example](https://github.com/angular/protractor/tree/master/example)
* Files `conf.ts` and `spec.ts`
* Page objects example
* Follows the [protractortest.org page objects example](http://www.protractortest.org/#/page-objects)
* Files `confPageObjects.ts`, `specPageObjects.ts`, and `angularPage.ts`
## File organization
```
exampleTypescript/
|- node_modules/ // downloaded node modules
|- tmp/ // compiled javascript output
|
|- .gitignore // since typescript produces javascript, we should not
| // commit javascript to the repo
|- angularPage.ts // page object example
|- confPageObjects.ts // configuration for the page objects example
|- package.json // node dependencies for the project
|- README.md // this file
|- spec.ts // spec for the simple protractor example
|- specPageObjects.ts // spec for the page objects example
|- tsconfig.json // typescript transpile configuration
```
## Getting started
This package.json references the local protractor directory with `"protractor": "file: ../"`. For the type declarations to work, from the protractor directory run an `npm install` to generate the declarations file.
Next, install the exampleTypescript node_modules with:
```
npm install
```
## Protractor typings
To use Protractor types, you'll need to import `protractor`. After this is imported, you should have autocompletion hints when typing.
```
import {browser, element, by, By, $, $$, ExpectedConditions} from 'protractor';
```
Although the Protractor configuration file can be written in javascript, creating it in typescript will have some hints. These hints and the reference configuration can be found in `lib/config.ts`. Below we are importing the Config interface and applying that interface to the config variable:
```
import {Config} from 'protractor';
export let config: Config = {
...
}
```
## Ambient typings
Protractor also uses ambient types including jasmine and node. These are brought in via the `tsconfig.json` file, which uses npm module resolution to get types from `node_modules/@types`.
## Compiling your code
To convert your typescript to javascript (transpiling), you'll use the Typescript compiler (tsc). If you install typescript globally, the command is `tsc`. If it is not installed globally, the typescript compiler can be executed with `npm run tsc`.
## Running Protractor
After transpiling your code to javascript, you'll run Protractor like before: `protractor conf.js`
## Helpful links
* [TypescriptLang.org tutorial](http://www.typescriptlang.org/docs/tutorial.html)
* [TypescriptLang.org tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html)
* [Typescript gitter](https://gitter.im/Microsoft/TypeScript)
* [Typescript stackoverflow](http://stackoverflow.com/questions/tagged/typescript)