mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
fix(ariaqueryhandler): allow single quotes in aria attribute selector (#7750)
This updates the regular expression used to parse aria attribute selectors so that single quotes may be used as an alternative to double quotes, e.g. `aria/Single button[role='button']`. Issues: #7721 Co-authored-by: Andy Earnshaw <andy.earnshaw@gmail.com>
This commit is contained in:
parent
ad7f1de44f
commit
b0319ecc89
@ -41,7 +41,7 @@ const normalizeValue = (value: string): string =>
|
||||
value.replace(/ +/g, ' ').trim();
|
||||
const knownAttributes = new Set(['name', 'role']);
|
||||
const attributeRegexp =
|
||||
/\[\s*(?<attribute>\w+)\s*=\s*"(?<value>\\.|[^"\\]*)"\s*\]/g;
|
||||
/\[\s*(?<attribute>\w+)\s*=\s*(?<quote>"|')(?<value>\\.|.*?(?=\k<quote>))\k<quote>\s*\]/g;
|
||||
|
||||
/*
|
||||
* The selectors consist of an accessible name to query for and optionally
|
||||
@ -58,7 +58,7 @@ function parseAriaSelector(selector: string): ariaQueryOption {
|
||||
const queryOptions: ariaQueryOption = {};
|
||||
const defaultName = selector.replace(
|
||||
attributeRegexp,
|
||||
(_, attribute: string, value: string) => {
|
||||
(_, attribute: string, quote: string, value: string) => {
|
||||
attribute = attribute.trim();
|
||||
if (!knownAttributes.has(attribute))
|
||||
throw new Error(`Unknown aria attribute "${attribute}" in selector`);
|
||||
|
@ -46,6 +46,10 @@ describeChromeOnly('AriaQueryHandler', () => {
|
||||
'aria/Submit button and some spaces[role="button"]'
|
||||
);
|
||||
await expectFound(button);
|
||||
button = await page.$(
|
||||
"aria/Submit button and some spaces[role='button']"
|
||||
);
|
||||
await expectFound(button);
|
||||
button = await page.$(
|
||||
'aria/ Submit button and some spaces[role="button"]'
|
||||
);
|
||||
@ -70,6 +74,10 @@ describeChromeOnly('AriaQueryHandler', () => {
|
||||
'aria/[name=" Submit button and some spaces"][role="button"]'
|
||||
);
|
||||
await expectFound(button);
|
||||
button = await page.$(
|
||||
"aria/[name=' Submit button and some spaces'][role='button']"
|
||||
);
|
||||
await expectFound(button);
|
||||
button = await page.$(
|
||||
'aria/ignored[name="Submit button and some spaces"][role="button"]'
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user