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 a Google in the pages.The content of
conf.js is as follows:exports.config = {
seleniumAddress: '
http://localhost:4444/wd/hub',
specs: ['spec...
Published on February 17, 2015 10:25