-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1727 from jdi-testing/issue_1588-escaping-special…
…-text-locator-characters Issue 1588: escaping special text locator characters
- Loading branch information
Showing
5 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
export const escapeLocatorString = (selector: string): string => { | ||
return selector.replace(/(["'\\])/g, '\\$1'); | ||
}; | ||
|
||
export const fullEscapeLocatorString = (str: string = ''): string => { | ||
return str | ||
.replaceAll(/\\/g, '\\\\') // escape backslash | ||
.replaceAll(/\"/g, '\\"') // escape double quotes | ||
.replaceAll(/\'/g, "\\'") // escape single quotes | ||
.replaceAll(/\t/g, '\\t') // escape tabs | ||
.replaceAll(/\n/g, '\\n') // escape newlines | ||
.replaceAll(/\r/g, '\\r') // escape carriage returns | ||
.replaceAll(/\f/g, '\\f'); // escape form feeds | ||
}; | ||
|
||
export const checkForEscaped = (str: string = ''): boolean => { | ||
const found = str.match(/\\/); | ||
return found ? true : false; | ||
}; |