Skip to content

Commit

Permalink
Allow 'None' as sameSite option when setting cookies - closes #7555
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Oct 21, 2021
1 parent f131373 commit ab833d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wdio-protocols/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface Timeouts {
script?: number
}

export type SameSiteOptions = 'Lax' | 'Strict'
export type SameSiteOptions = 'Lax' | 'Strict' | 'None'
export interface Cookie {
/**
* The name of the cookie.
Expand Down

0 comments on commit ab833d4

Please sign in to comment.