@@ -166,6 +166,7 @@ public Action clickTypeInto(final Widget widget, double relX, double relY, final
166166 //ret.set(Tags.Desc, "Type '" + Util.abbreviate(text, 5, "...") + "' into '" + widget.get(Tags.Desc, "<no description>" + "'"));
167167 ret .set (Tags .Desc , "Type '" + Util .abbreviate (text , DISPLAY_TEXT_MAX_LENGTH , "..." ) + "' into '" + widget .get (Tags .Desc , "<no description>" + "'" )); // by urueda
168168 ret .mapOriginWidget (widget );
169+ ret .set (Tags .InputText , text );
169170 return ret ;
170171 }
171172
@@ -176,6 +177,7 @@ public Action clickAndReplaceText(final Position position, final String text){
176177 ret .set (Tags .Visualizer , new TextVisualizer (position , Util .abbreviate (text , DISPLAY_TEXT_MAX_LENGTH , "..." ), TypePen ));
177178 //ret.set(Tags.Desc, "Type '" + Util.abbreviate(text, 5, "...") + "' into '" + position.toString() + "'");
178179 ret .set (Tags .Desc , "Replace '" + Util .abbreviate (text , DISPLAY_TEXT_MAX_LENGTH , "..." ) + "' into '" + position .toString () + "'" );
180+ ret .set (Tags .InputText , text );
179181 ret .set (Tags .Role , ActionRoles .ClickTypeInto );
180182 return ret ;
181183 }
@@ -187,6 +189,7 @@ public Action clickAndAppendText(final Position position, final String text){
187189 ret .set (Tags .Visualizer , new TextVisualizer (position , Util .abbreviate (text , DISPLAY_TEXT_MAX_LENGTH , "..." ), TypePen ));
188190 //ret.set(Tags.Desc, "Type '" + Util.abbreviate(text, 5, "...") + "' into '" + position.toString() + "'");
189191 ret .set (Tags .Desc , "Append '" + Util .abbreviate (text , DISPLAY_TEXT_MAX_LENGTH , "..." ) + "' into '" + position .toString () + "'" );
192+ ret .set (Tags .InputText , text );
190193 ret .set (Tags .Role , ActionRoles .ClickTypeInto );
191194 return ret ;
192195 }
@@ -197,6 +200,7 @@ public Action pasteAndReplaceText(final Position position, final String text){
197200 ret .set (Tags .Visualizer , new TextVisualizer (position , Util .abbreviate (text , DISPLAY_TEXT_MAX_LENGTH , "..." ), TypePen ));
198201 ret .set (Tags .Role , ActionRoles .PasteTextInto );
199202 ret .set (Tags .Desc , "Paste Text: " + StringEscapeUtils .escapeHtml4 (text ));
203+ ret .set (Tags .InputText , text );
200204 return ret ;
201205 }
202206
@@ -206,6 +210,7 @@ public Action pasteAndAppendText(final Position position, final String text){
206210 ret .set (Tags .Visualizer , new TextVisualizer (position , Util .abbreviate (text , DISPLAY_TEXT_MAX_LENGTH , "..." ), TypePen ));
207211 ret .set (Tags .Role , ActionRoles .PasteTextInto );
208212 ret .set (Tags .Desc , "Append Paste Text: " + StringEscapeUtils .escapeHtml4 (text ));
213+ ret .set (Tags .InputText , text );
209214 return ret ;
210215 }
211216
0 commit comments