4

The json request I am sending is:

Given url applicationURL

And path 'applications'

And header Authorization = subscribeToken

And request:

    {
      "throttlingTier": "Unlimited",
      "description": "sample app description",
      "name": "TestbyKarate",
      "callbackUrl": "https:/apistore-dev-dev-a878-14-ams10-nonp.qcpaws.qantas.com.au/callback"
    }

When method post

Then status 201

* def applicationId = response.applicationId

* print 'applicationId is ', applicationId

I am sending the name in my request as TestbyKarate but I want to send a unique value every time my test runs.

Is there any way to do it?

Peter Thomas
  • 47,282
  • 14
  • 68
  • 196
Sneha Shukla
  • 353
  • 1
  • 4
  • 18

2 Answers2

8

Can you please read the docs once. It will really benefit you.

https://github.com/intuit/karate#commonly-needed-utilities

So in the Background or common feature, you have:

* def now = function(){ return java.lang.System.currentTimeMillis() }

Then you can do this:

* def name = 'Test-' + now()
* request { name: '#(name)' }
Peter Thomas
  • 47,282
  • 14
  • 68
  • 196
0

check below example

Feature: Create User Name

Scenario: UserName with unique Name

  • def getDate = """ function(){ return java.lang.System.nanoTime() } """

    • def time = getDate()

    • def userName = 'createUser' + time + '_Test'