From a5935203a4f0bf7557f788c2d54f5b4db06ebdf5 Mon Sep 17 00:00:00 2001 From: Marko Rautiainen <15322977+rauttiz@users.noreply.github.com> Date: Thu, 9 Apr 2026 18:53:26 +0300 Subject: [PATCH] docs: fix arguments table formatting in Set Presenter Mode keyword --- Browser/keywords/browser_control.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Browser/keywords/browser_control.py b/Browser/keywords/browser_control.py index 11bd89fee..1c8fe5064 100644 --- a/Browser/keywords/browser_control.py +++ b/Browser/keywords/browser_control.py @@ -649,14 +649,12 @@ def set_presenter_mode( When enabled, elements are highlighted with a border for a duration to visually show what the keyword found. | =Arguments= | =Description= | - | ``mode`` | When set to ``True``, enables presenter mode with default settings. When set to ``False``, disables presenter mode. - Can also be a dictionary containing all highlighting configuration options as defined in ``HighLightElement``. - **All fields in the dictionary are required.** + | ``mode`` | When set to ``True``, enables presenter mode with default settings. When set to ``False``, disables presenter mode. Can also be a dictionary containing all highlighting configuration options as defined in ``HighLightElement``. All fields in the dictionary are required. | The keyword returns the previous presenter mode value, allowing you to restore it later. Example: - | ${old_mode}= Set Presenter Mode True + | ${old_mode} = Set Presenter Mode True | Click //button # Element will be highlighted | Set Presenter Mode ${old_mode} # Restore previous mode |