This is the pilot release of this plugin. It basically converts your large postman collections into playwright scripts
- Run npm install -g postwright
-
Create a folder and navigate into it then run
postwright -c <location-of-saved-postman-collection>
orpostwright --convert <location-of-saved-postman-collection>
orpostwright convert <location-of-saved-postman-collection>
-
You can alternatively run
postwright -c <location-of-saved-postman-collection> -o <preferred-location-to-save-the-converted-script
orpostwright -c <location-of-saved-postman-collection> --output <preferred-location-to-save-the-converted-script
-
The current release converts your collections into playwright version.
-
Creates a
variables.js
andvariables.json
files leaving you to decide how you want to parse in saved variables -
Offers basic post-response assertions which are status code and response time. It extracts the title of other tests so that you can write them manually.
Note
This is a first release, the plugin shall be improved upon to better handle post-response tests and pre-request scripts.