Show HN: Interceptor – mock AJAX requests at the browser level
crypt.codemancers.com
Show HN: Interceptor – mock AJAX requests at the browser level
1–10 of 11 posts
Re: Show HN: Interceptor – mock AJAX requests at the browser level
#2Re: Show HN: Interceptor – mock AJAX requests at the browser level
#3Re: Show HN: Interceptor – mock AJAX requests at the browser level
#4Re: Show HN: Interceptor – mock AJAX requests at the browser level
#5Edit: yes it’s very different! Didn’t see that you could return different responses dynamically.
Re: Show HN: Interceptor – mock AJAX requests at the browser level
#6Re: Show HN: Interceptor – mock AJAX requests at the browser level
#7How usable is this in for example webdriverio tests?
Re: Show HN: Interceptor – mock AJAX requests at the browser level
#8How usable is this in for example webdriverio tests?
webdriverio tests are basically automation tests similar to selenium tests. Looking at FIREFOX PROFILE SERVICE( http://webdriver.io/guide/services/firefox-profile.html ), it looks like you can only fire up the extensions, but not define actions like click or type. If that would have been the case, One could have intercepted the requests, defined their own response and have automated tests defined for an app/website.…
Re: Show HN: Interceptor – mock AJAX requests at the browser level
#9Re: Show HN: Interceptor – mock AJAX requests at the browser level
#10This is a pretty cool tool. I'm currently working on a tool that addresses this problem in a different way, by standing up an API server that returns mock data based on the incoming request. It's targeted at an enterprise audience where dozens of APIs need to be mocked. This looks like a great solution for smaller teams or projects.