test: add a test for numerical id selector (#4429)

This commit is contained in:
Dmitry Gozman 2020-11-13 11:47:44 -08:00 коммит произвёл GitHub
Родитель 9e1b26f9f9
Коммит cd18ddb693
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -125,3 +125,9 @@ it('should not match root after >>', async ({page, server}) => {
const element = await page.$('css=section >> css=section');
expect(element).toBe(null);
});
it('should work with numerical id', async ({page, server}) => {
await page.setContent('<section id="123"></section>');
const element = await page.$('#\\31\\32\\33');
expect(element).toBeTruthy();
});