Skip to content

createCookieAndWait (UI Automation - Manipulation)

Compatible with:
  • Purpose
  • Generated from createCookie(nameValuePair, optionsString)
  • Create a new cookie whose path and domain are same with those of current page under test unless you specified a path for this cookie explicitly.
  • Syntax
  • createCookieAndWait(nameValuePair, optionsString)
  • Target
  • nameValuePair - Name and value of the cookie in a format 'name=value'
  • Value
  • optionsString - Options for the cookie. Currently supported options include 'path', 'max_age' and 'domain'. the optionsString's format is 'path=/path/, max_age=60, domain=.foo.com'. The order of options are irrelevant, the unit of the value of 'max_age' is second. Note that specifying a domain that isn't a subset of the current domain will usually fail.
  • Return Value
  • N/A
 
 
 

Feedback and Knowledge Base