You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Browser/keywords/webapp_state.py
+8-8
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ def local_storage_get_item(
53
53
| ``assertion_operator`` | Assertion operator to use. See `Assertions` for more information. |
54
54
| ``assertion_expected`` | Expected value to compare with. |
55
55
| ``message`` | Custom error message to use. |
56
-
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
56
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
57
57
58
58
59
59
See `Assertions` for further details for the assertion arguments. Defaults to None.
@@ -85,7 +85,7 @@ def local_storage_set_item(
85
85
| =Arguments= | =Description= |
86
86
| ``key`` | The name of the key under which it should be saved. |
87
87
| ``value`` | The value which shall be saved as a string. |
88
-
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
88
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
| ``key`` | The name of the item which shall be deleted. |
107
-
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
107
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
127
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the LocalStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
128
128
129
129
Example:
130
130
| `Local Storage Set Item` Foo bar
@@ -156,7 +156,7 @@ def session_storage_get_item(
156
156
| ``assertion_operator`` | Assertion operator to use. See `Assertions` for more information. |
157
157
| ``assertion_expected`` | Expected value to compare with. |
158
158
| ``message`` | Custom error message to use. |
159
-
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
159
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
160
160
161
161
Example:
162
162
| `SessionStorage Set Item` key2 value2
@@ -188,7 +188,7 @@ def session_storage_set_item(
188
188
| =Arguments= | =Description= |
189
189
| ``key`` | The name of the key under which it should be saved. |
190
190
| ``value`` | The value which shall be saved as a string. |
191
-
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
191
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
| ``key`` | The name of the item which shall be deleted. |
212
-
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
212
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
"""Remove all saved data from the session storage.
229
229
230
230
| =Arguments= | =Description= |
231
-
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: `iframe[name="test"] >>> body` |
231
+
| ``frame_selector`` | If this selector points to an element inside an iframe, the SessionStorage of that frame is used. Example: ``iframe[name="test"] >>> body`` |
0 commit comments