Sho Amano
Sho Amano
Hi, looking at CLDR document https://github.com/theplant/cldr#how-to-use, I think we need to import locale files. These worked for me with `en` locale: **lang/en.yaml** ``` en: demo: plural: '{{p "Count" (one "{{.Count}}...
FYI, I created a hack in my branch and it seems to be working as expected. https://github.com/shoamano83/playwright-go/tree/wait_for_load_state_timeout It has a few caveats though: * This breaks `Page.WaitForLoadState()` and `Frame.WaitForLoadState()` API...
Sure, I created https://github.com/playwright-community/playwright-go/pull/300. Regarding options, actually I prefer having `state` variable as mandatory arg and leave `FrameWaitForLoadStateOptions` as it is. My concern is that in the original (JavaScript) API,...
After playing around a little more, I now prefer retrieving whether the function has been timed out or not. So maybe we can create a new API: ``` WaitForLoadStateWithTimeout(state *LoadState,...