ContributionsMost RecentMost LikesSolutionsRe: Changing the Keys to SetText in Keyword Test You may also go to Tools > Options > Engines > Recording and set the default for your when you record your keyword tests. aqString.Trim does not remove all spaces from the specified string Hey everyone! 👋 The function aqString.Trim() only removes leading and trailing spaces, if a given string has a whitespace within, this one is not removed. Example of using Trim function: function test(){ let str = " this is an example "; Log.Message(aqString.Trim(str)); //returns: "this is an example" } The code that worked for me was: function test(){ let str = " this is an example "; Log.Message(aqString.Replace(str, " ", "")); //returns: "thisisanexample" } Is it safe to continue with this solution? Will there be an improvement to the aqString.Trim function to remove all whitespace from a string? Solved