Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion atest/acceptance/keywords/cookies.robot
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ Library DateTime
*** Test Cases ***
Get Cookies
${cookies}= Get Cookies
Should Contain ${cookies} test=seleniumlibrary
Should Contain ${cookies} another=value
Should Contain ${cookies} far_future=timemachine
Should Match Regexp ${cookies}
... ^(test=seleniumlibrary; another=value)|(another=value; test=seleniumlibrary)$
... ^(?:test=seleniumlibrary|another=value|far_future=timemachine)(?:; (?:test=seleniumlibrary|another=value|far_future=timemachine)){2}$

Get Cookies As Dict
${cookies}= Get Cookies as_dict=True
Expand Down
Loading