Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Robot Framework Cache Library

Caching mechanism for Robot Framework tests. Works within a single test run and across multiple test
runs. Works with Pabot, though it requires `--pabotlib`.
runs. Works with Pabot (requires `--pabotlib`).

## Why

Expand Down Expand Up @@ -80,7 +80,7 @@ token every time you run a test. This can be a great help while making or debugg

```robotframework
Get Api Session Token
${cache_key} = Set Variable api-session
VAR ${cache_key} = api-sessions
${cached_token} = Cache Retrieve value ${cache_key}
IF $cached_token is not $None
RETURN ${cached_token}
Expand Down
2 changes: 1 addition & 1 deletion src/CacheLibrary/CacheLibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class CacheLibrary:
request the session token every time when you're making/debugging a test.

| Get Api Session Token
| ${cache_key} = Set Variable api-session
| VAR ${cache_key} = api-sessions
| ${cached_token} = Cache Retrieve value ${cache_key}
| IF $cached_token is not $None
| RETURN ${cached_token}
Expand Down