We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ ./Meta/ladybird.sh run WebDriver ... Listening on 0.0.0.0:8000
First request works fine, opens the window and receives a session ID of 0:
$ curl -d '{"capabilities":{}}' http://127.0.0.1:8000/session {"value":{"sessionId":"0","capabilities":{"browserName":"ladybird","browserVersion":"1.0","platformName":"linux","acceptInsecureCerts":false,"strictFileInteractability":false,"setWindowRect":true,"serenity:ladybird":{"headless":false},"pageLoadStrategy":"normal","timeouts":{"script":30000,"pageLoad":300000,"implicit":0},"unhandledPromptBehavior":"dismiss and notify"}}}
Second request opens a new tab but never gets a response:
$ curl -d '{"capabilities":{}}' http://127.0.0.1:8000/session ...hangs...
Deleting the existing session either before or after the second POST works in that it gets a response but doesn't prevent future hangs:
$ curl -XDELETE http://127.0.0.1:8000/session/0 {"value":null}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First request works fine, opens the window and receives a session ID of 0:
Second request opens a new tab but never gets a response:
Deleting the existing session either before or after the second POST works in that it gets a response but doesn't prevent future hangs:
The text was updated successfully, but these errors were encountered: