-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
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
Is there a way to abort the request? #455
Comments
Not that I know of |
Afaik there is, just not using this service. WebdriverIO has some native capabilities like the |
The approach taken by my coworkers has been to do something similar to what this service does: wrap the However, if you don't need to block the requests, just check they were made, then you can use A PR extending the capability to match just the method & url is welcomed! |
You can write a custom command. Grab the |
Hi,
I want to have the ability to abort the requests while testing so they don't get to the API server. Is there a way to do so?
Currenlty what I see is that requets are made to the server and 200 returns. I don't want to bother myself to check if the API server responds or not, I just want to make sure that the requets is being made.
Is there an API for this?
The text was updated successfully, but these errors were encountered: