Daniel White
Daniel White
Is this ever going to be addressed? I can't find a single work-around for "react-testing-library" + Jest that actually makes sense and works.
This is also a problem for us. It seems that the `history` module tries to grab `window.history.state` in which IE throws an error. It seems like this should be wrapped...
Additionally, why does `getEntries` only get added if `performance.mark` or `performance.measure` is unsupported? Opera doesn't support `getEntries`, but supports the other two. Wouldn't that essentially make this polyfill not apply?...
Thanks so much for the quick reply! I consumed the beta release, but I'm getting an error trying to use it like you've shown. I don't know it if matters,...
Thank you so much for all this support, @jrolfs! Due to another issue with the experimental Playwright feature, we've decided to not use that feature for now. We're pivoting to...
(Removed comment as it was user error)
@jrolfs I think I found a potential issue. I'm trying to use the following, but it doesn't work: https://playwright.dev/docs/api/class-locator#locator-wait-for ```ts const heading = getByRole("heading"); await heading.waitFor(); await expect(heading).toContainText("Stay signed in?");...
@jrolfs Is there a reason that `findByRole` doesn't exist in this library? I also find that when I try to use `findByText` I'm getting ` TypeError: findByText is not a...
@jrolfs that makes sense! Thanks again for getting back so soon! Our team has been using `findBy*` to check that a single element exists, per Kent C Dodd's direction for...
@jrolfs Another question: I seem to be getting errors while debugging in VSC with the Playwright extension now, when I wasn't getting them before... It's the same error I got...