Tim Voronov

Results 100 comments of Tim Voronov

> Hi, I am new to this project and would like to work on this if there is still need?! Hey, welcome! Sure, the overall coverage is still pretty low,...

> Hello, I wanna help with the test some consideration or example I should read Hey, thanks for your offer to help! Drivers are not very well covered with unit...

If it's relative, why don't you just concat it with a base url? ``` doc.url + link.attributes.href ```

You can do something like this: ``` LET href = link.attributes.href LET url = CONTAINS(href, "http") ? href : doc.url + link.attributes.href ``` I might add helper functions for url...

Hey, Have you tried to use ``SELECT`` function? https://www.montferret.dev/docs/stdlib/html/#select ```aql LET d = DOCUMENT('my-doc', { driver: 'cdp'}) LET out = SELECT(d, "#select-input", ["value-to-select"]) RETURN out ```

We don't :( What do you think we need to cover?

By some reason the page crashes in headless mode and freezes in the normal one.

Yeah, this is one of limitations of CDP driver - there is no API that would allow you to attach to opened pop up window. I will address this feature...

Hey, that's definitely an unexpected behavior. Let me look into this.

Could you try the latest from master?