Reputation: 2760
I want to create a automation framework using screenplay pattern using protractor,serenity,typescript.
I don't know how to create screenplay project with serenity.
Upvotes: 2
Views: 1140
Reputation: 2760
Use Following Steps To Create Project :
execute "npm init" command and provides required details such as :
A. package name : Name_of_project B. version : 1.0.0 C. description : serenity-js screenplay with protractor project D. entry point : index.js E. test command : protractor protractor.conf.js F. git repository : git repository url E. keywords: press enter for nothing F. author : Pritam Maske G. license : press enter for "ISC" H. It will ask for confirmation, press enter if everything looks fine I. Above steps will result in package.json file in your project root directory
Upvotes: 0
Reputation: 1199
Maybe start with the documentation? https://serenity-js.org/design/screenplay-pattern.html
Upvotes: 3