Utils.clearCookies

Removes all cookies currently stored by the Vuser.

Utils.clearCookies();

Arguments

None

Return value

A promise that will be fulfilled with no arguments.

Example

Copy code
(async ()=>{
    await Utils.clearCookies();
})();