0
MainTechAS created
In AppTestBase.cs, the added function GetRandomString() has different order of min/max length parameters, than pre-version 130100
This will break all UITest based on templates that uses a different order of min/max parameters -> error: "Invalid minLength or maxLength parameters"
Pre-version 130100:
- GetRandomString(int minLength = 0, int maxLength = 13, string regexPattern = "[^A-Za-z0-9]")
Post-version 130100 (in AppTestBase.cs)
- GetRandomString(int maxLength = 13, int minLength = 0, string regexPattern = "[^A-Za-z0-9]")
1 Answer(s)
-
0
Hi @MainTechAS
Thanks, we will check this and release a bugfix version of Power Tools.