Installing Traceur For Testing ES6 Code
Google provides a compiler name Traceur for testing ES6 feature. Traceur compiles the ES6 code to ES5 for testing ES6 feature. You can find more details about Traceur compiler in the following link: https://github.com/google/traceur-compiler In this demo, “We will learn to install Traceur in the […]
WebStorm Creating AngularJS Seed Project
WebStorm 9 IDE provides feature to create a AngularJS project by generating the skeleton of the application. In this demo, “We will learn to create a seed AngularJS project using WebStorm 9”. In WebStorm 9 IDE select File>New project and enters the name of the project and select the project type as following screenshot: […]
Beginning With Protractor Testing NonAngularJS Application
ProtractorJS provides suits and specs to test web application. In this demo,”We will learn to test a non AngularJS application using protractor”. Two files conf.js and spec.js are required as conf.js contains all the configuration object and spec.js contains all the test cases. In this example we will test to check www.google.com contains a title text […]
Installing Protractor For AngularJS Testing
Protractor provides end to end testing for AngularJS application. In this demo, “We will learn to install protractor”. To install protractor use npm install –g protractor command in the terminal as following screenshot: To set up protractor we need to update webdriver-manager using update command as following screenshot. Web driver manager can be start […]