octaltree

Results 24 comments of octaltree

Good question. It works fine as long as the test passes, but I do not recommend it for production. I have been unable to generate the necessary effort to follow...

I've started supporting 1.25 in dev branch, I can't say anything about it because it's under investigation.

We can now use src/protocol/protocol.yml for interaction with the playwright server. Previously we had to read the original source. I have written a process in scripts/src/generate_protocol.rs to generate that schema...

Thank you for the issue that this crate holds. playwright is 1.15.2, but this crate is based on 1.11.0-1620331022000. I had to stop because there was a test that broke...

This rust binding is something I'm doing on my own. I don't want it to be a conscious hindrance to the original. The author of Ruby Binding is really enthusiastic...

I just tried to generate the interface. ```sh sed 's/1.11.0-1620331022000/1.16.0-next-1634703014000/' -i src/build.rs rm -r /tmp/build-playwright-rust # remove download cache rm -r ~/.cache/ms-playwright/playwright-rust/driver # remove runtime driver cd scripts make ../src/api/api.json...

This method in the example calls `newContext`. ``` let context = browser.context_builder().build().await?; ``` It creates a new browser context. It won't share cookies/cache with other browser contexts.

```py class Request(AsyncBase): def redirected_to(self) -> typing.Optional["Request"]: # mutable def failure(self) -> typing.Optional[str]: # mutable def timing(self) -> ResourceTiming: # mutable class WebSocket(AsyncBase): def expect_event( # event timeout async def...

```py class Request(AsyncBase): def redirected_to(self) -> typing.Optional["Request"]: # mutable def failure(self) -> typing.Optional[str]: # mutable def timing(self) -> ResourceTiming: # mutable class WebSocket(AsyncBase): def expect_event( # event timeout async def...

```py class Request(AsyncBase): def redirected_to(self) -> typing.Optional["Request"]: # mutable def failure(self) -> typing.Optional[str]: # mutable def timing(self) -> ResourceTiming: # mutable class WebSocket(AsyncBase): def expect_event( # event timeout async def...