[Solved] How can we assess the difficulty of automating the front-end of a web app? [closed]

This is a very tricky question indeed. I’ll give it a shot, but mind you I’m barely going to scratch the surface with this. Disclaimer: What I’ve written now, especially considering the speed with which the web is moving forward/changing (new W3C standards, new frameworks, new levels of abstraction over the same old programming principles), … Read more

[Solved] Variable scope in protractor

Try changing var to let. This allows to access your version inside your specs. describe(‘Nodeprojectpart2Component’, () => { let version = ”; beforeEach(() => { version = ‘1.0’; }); it(‘test’, () => { console.log( ‘version’ + version); }); }); Issue with your code – Your are retrieving the value of version inside an asynchronous/callback function. … Read more

[Solved] Is it feasible for a start-up of two developers to do full automated regression testing without manual testing? [closed]

The answer to this question is highly opinionated, but I’ll give it a shot anyway. From what you have described, seems you are “holding it wrong” in many ways. Your sprints are too long. You should be pushing to production once a day and should not be doing 2 hour of “regression testing” before every … Read more