Weston Thayer

Results 28 comments of Weston Thayer

I did manage to find a site still using hash routing: https://reading.summon.serialssolutions.com/search?s.q=cats#!/search?ho=t&l=en&q=cats It doesn't appear to have any explicit focus handling. The focus behavior is actually non-deterministic, oddly enough. If...

We still don't rely on axios's `timeout` option, instead using our own `setTimeout()` with a `axios.CancelToken`. FWIW we'll probably migrate off axios to the fetch built into Node.js at some...

Would this prevent automatic language switching? I've noticed Narrator will switch to Raul when encountering ``, but NVDA makes no switch. - Windows 10 - NVDA 2024.1 - Windows OneCore...

Noting that no role shown on https://playwright.dev/docs/api/class-locator#locator-get-by-role-option-role seems to discover `One`. ```js it('should discover generic role elements', async ({ page }) => { await page.setContent(` One Two `); const roles...

Note that there are many more implicit generic elements than just ``. https://www.w3.org/TR/html-aam/#html-element-role-mappings is probably the authoritative spec, but https://www.w3.org/TR/html-aria/#docconformance has the same info. Confusingly, Chromium DevTools isn't always 1:1...

Good question. Thanks for looking into this issue. I've learned a bunch since filing this issue that changes my perspective, and let me apologize in advance for not updating this...

`PWTEST_WATCH=1` and the `s` option to show & reuse the browser are **so** close to what would really help my workflow. I'm testing long e2e flows, long enough that writing...

I had this exact issue, tracked it down to #6827. You can confirm whether it's the same root cause by adding: ```js window.addEventListener("beforeunload", () => { const pendingRedirectKey = Object.keys(window.sessionStorage).find(key...