link89
link89
@vania-pooh session-id is already in the response of session create request. I guess you were confused with the request's capabilities.
And back to the original question, I don't think it need to change the url of cdp, but just add `"se:cdp": "ws://selenoid.example.com:4444/devtools/f3cb3a08eb481980ed0b53cd446e6b84/"` to the response, that's enough.
> Hello all! Nope, the project is not dead, in fact, I've been building stuff for it. > > I created SQLModel precisely to use it in this project, to...
> By 'skip parse' is it that all arguments are treated as strings? By SkipParse I just want Fire to pass remaining arguments to function by keeping their original form...
Hi @dbieber Do you have a chance to review this PR? I have some projects depend on this feature and it would be easier to build and delivery them if...
> We'll want a decorator that causes Fire to still parse args for named and positional args and kwargs, but to pass any remaining args as *varargs unparsed. > >...
> What I have in mind is for the developer of a CLI to be able to use Fire from within their CLI. I am not sure if I understand...
I've taken another look at this issue recently and believe that a simpler design may be more sensible. Consider the following code: ```python @PassThrough def my_cmd(a, b, *args): print(a, b,...
> My leaning is still toward having a PassThrough decorator that only applies to *varargs. I get your point but it is hard for me to implment it ,and there...
I've reviewed the code related to the parser. Currently, it parses the arguments first and then constructs `args` and `kwargs` based on the method signature. To achieve the functionality you...