You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before v3, invalid characters were just removed from a string. Now they are replaced with underscore symbol, similarly to sanitization of screenshot and snapshot file names. This mainly affects the test folder names in Artifacts directory path.
Example
Test("2/1") as Name becomes Test(_2_1_) as NameSanitized
The text was updated successfully, but these errors were encountered:
Before v3, invalid characters were just removed from a string. Now they are replaced with underscore symbol, similarly to sanitization of screenshot and snapshot file names. This mainly affects the test folder names in Artifacts directory path.
Example
Test("2/1")
asName
becomesTest(_2_1_)
asNameSanitized
The text was updated successfully, but these errors were encountered: