@@ -30,11 +30,12 @@ class AlertKeywords(LibraryComponent):
3030
3131 @keyword
3232 def input_text_into_prompt (self , text ):
33- """Deprecated. Use `Input Text Into Alert` instead.
33+ """*DEPRECATED in SeleniumLibrary 3.2.* Use `Input Text Into Alert` instead.
3434
3535 Types the given ``text`` into an input field in an alert.
3636 Leaves the alert open.
3737 """
38+
3839 self .input_text_into_alert (text , self .LEAVE )
3940
4041 @keyword
@@ -99,7 +100,7 @@ def alert_should_not_be_present(self, action=ACCEPT, timeout=0):
99100
100101 @keyword
101102 def choose_cancel_on_next_confirmation (self ):
102- """Deprecated. Use `Handle Alert` directly instead.
103+ """*DEPRECATED in SeleniumLibrary 3.2.* Use `Handle Alert` directly instead.
103104
104105 In versions prior to SeleniumLibrary 3.0, the alert handling
105106 approach needed to be set separately before using the `Confirm
@@ -110,7 +111,7 @@ def choose_cancel_on_next_confirmation(self):
110111
111112 @keyword
112113 def choose_ok_on_next_confirmation (self ):
113- """Deprecated. Use `Handle Alert` directly instead.
114+ """*DEPRECATED in SeleniumLibrary 3.2.* Use `Handle Alert` directly instead.
114115
115116 In versions prior to SeleniumLibrary 3.0, the alert handling
116117 approach needed to be set separately before using the `Confirm
@@ -121,7 +122,7 @@ def choose_ok_on_next_confirmation(self):
121122
122123 @keyword
123124 def confirm_action (self ):
124- """Deprecated. Use `Handle Alert` instead.
125+ """*DEPRECATED in SeleniumLibrary 3.2.* Use `Handle Alert` instead.
125126
126127 By default accepts an alert, but this behavior can be altered
127128 with `Choose Cancel On Next Confirmation` and `Choose Ok On Next
@@ -135,7 +136,7 @@ def confirm_action(self):
135136
136137 @keyword
137138 def get_alert_message (self , dismiss = True ):
138- """Deprecated. Use `Handle Alert` instead.
139+ """*DEPRECATED in SeleniumLibrary 3.2.* Use `Handle Alert` instead.
139140
140141 Returns the message the alert has. Dismisses the alert by default
141142 (i.e. presses ``Cancel``) and setting ``dismiss`` to false leaves
@@ -150,7 +151,7 @@ def get_alert_message(self, dismiss=True):
150151
151152 @keyword
152153 def dismiss_alert (self , accept = True ):
153- """Deprecated. Use `Handle Alert` instead.
154+ """*DEPRECATED in SeleniumLibrary 3.2.* Use `Handle Alert` instead.
154155
155156 Contrary to its name, this keyword accepts the alert by default
156157 (i.e. presses ``Ok``). ``accept`` can be set to a false value
0 commit comments