X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/c0d1fb859fee050373df1fa77d03cb2c1a8cde91..ff85679c2bc5fcc4119ab4da563fa5222440f3ab:/test/details.js diff --git a/test/details.js b/test/details.js index ba1c154..5baf402 100644 --- a/test/details.js +++ b/test/details.js @@ -68,5 +68,15 @@ describe('Details Page', function () { current_url = new URL(await page.url()); assert.strictEqual(current_url.searchParams.get('hierarchy'), '1'); }); + + it('should have case-insenstive input and can navigate to other details', async function () { + let input_field = await page.$('input[type=edit]'); + await input_field.click({ clickCount: 3 }); + await input_field.type('w375257537'); + await page.click('button[type=submit]'); + + await page.waitForSelector('a[href="https://www.openstreetmap.org/way/375257537"]'); + assert.ok((await page.$eval('.container h1', el => el.textContent)).includes('Taj Mahal')); + }); }); });