Autokin Generators
Small set of keywords to help in generation of data
Generate Email Addresses
Scenario: Login to the system
Given that a secure endpoint is up at {host}
Given I set Content-Type header to application/json
Given I set the JSON body to
"""
{
"username": "{generate:email(gmail.com)}",
"password": "p3dr0"
}
"""
When I POST /loginGenerate Passwords
Scenario: Login to the system
Given that a secure endpoint is up at {host}
Given I set Content-Type header to application/json
Given I set the JSON body to
"""
{
"username": "me@gmail.com",
"password": "{generate:any(8,numbers,uppercase,lowercase)}"
}
"""
When I POST /loginGenerate Names
Generators References
Last updated
Was this helpful?