¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Re: testing on the web
I¡¯ve recently tried illustrating the Saff Squeeze in this GitHub repository: https://github.com/Suigi/saff-squeeze I¡¯m not sure if I was doing a good job of executing the technique, let alone
By Daniel Ranner · #36042 ·
Re: testing on the web
You can reference Kent's original article via the wayback machine: https://web.archive.org/web/20120311131729/http://www.threeriversinstitute.org/HitEmHighHitEmLow.html
By Charlie Poole · #36041 ·
Re: testing on the web
Hey J.B. Do you have this description of a Saff squeeze posted anywhere? I have a blog post that I'm writing that references a Saff squeeze, and I'd love to just link to a description rather than
By Jacqueline Lee · #36040 ·
Re: testing on the web
[...] Another suggestion: apply the Saff Squeeze. Think "debugging with automated tests". Start with a failing test. 1. Inline the action of the test: that's the central function that you invoke to
By J. B. Rainsberger · #36039 ·
Re: testing on the web
One reasonable way to get from a few slow-running end-to-end tests to some strategic unit testing is to do the following whenever you encounter a bug: 1. Once you have diagnosed the bug, verify your
By Steve Gordon · #36038 ·
Re: testing on the web
JB's done a great job here. Selenium has its place, of course, but my usual heartburn is that you have to have a full system (even if some are mocks) stood up and then you have to do a lot of waiting
By Tim Ottinger · #36037 ·
Re: testing on the web
Joe... nicely put!
By Charlie Poole · #36036 ·
Re: testing on the web
[email protected]> wrote: Fir
By J. B. Rainsberger · #36035 ·
Re: testing on the web
I¡¯m not familiar with JWT. A search says ¡°json web tokens¡±, and I suppose maybe this is a widelly used system of token definition? Re automate a post, I¡¯m not sure what that post is, but
By Alan Baljeu · #36034 ·
Re: testing on the web
I am testing a combo of the service API¡¯s and the test data I put into the service manually. The service itself is reliable and doesn¡¯t change much, but as I develop the test data, that¡¯s a
By Alan Baljeu · #36033 ·
Re: testing on the web
I¡¯ve done this in some apps, creating a JWT that satisfies the app¡¯s needs. I¡¯m interested if the service can¡¯t be bypassed as George says or at least you could automate a post, extract the
By Tim Ottinger · #36032 ·
Re: testing on the web
Alan, well, maybe not. Are you testing the functionality of that service, or functionality that you are creating? - George
By George Dinwiddie · #36031 ·
Re: testing on the web
Is that possible? I don¡¯t create auth tokens, but the service I consume does this.
By Alan Baljeu · #36030 ·
Re: testing on the web
Alan, Create an auth token in a setup method and use that. I would do so by calling the needed code directly rather than navigating to /login. You don't need an extra dependency on the URL
By George Dinwiddie · #36029 ·
Re: testing on the web
I will keep Selenium in mind for future when I¡¯m doing UI work. Maybe I can get more specific with my present concern. I create an API service /xyz. That works by calling a 3rd party service but
By Alan Baljeu · #36028 ·
Re: testing on the web
NUnit is Ok for Unit Testing C# code. For the Integration tests, you can use NUnit. Just ensure that these tests can be run seprately. For UI testing, you will can add selenium to NUnit.
By Vijay <vijay_nathani@...> · #36027 ·
Re: testing on the web
My prime concern now is to test the backend which is C#, and through the third party webservice. Alan Baljeualanbaljeu@...
By Alan Baljeu · #36026 ·
Re: testing on the web
Alan - I went full bore about a year ago into learning JavaScript for the purposes of creating this game: https://teamsgame.agilepainrelief.com I hired someone to help me write the scaffolding and
By Mark Levison · #36025 ·
Re: testing on the web
Alan Let go of the "nuts and bolts" view for a moment and think about what you're trying to accomplish. The login is just an implementation detail. (I talked about this in
By George Dinwiddie · #36024 ·
testing on the web
I'm a desktop software developer getting into web development, using C# at present.? Also aiming to do Angular.? I'm fishing for strategies, techniques, tools I should be using to test stuff.? My
By Alan Baljeu · #36023 ·