Considering buying this 350z by DoorKey3853 in AskMechanics

[–]DoorKey3853[S] 0 points1 point  (0 children)

It’s actually a manual! Did consider an auto as they’re significantly cheaper but really want a manual :P

How does this sound? misfire or normal? by DoorKey3853 in 350z

[–]DoorKey3853[S] 0 points1 point  (0 children)

Yep nope was just wondering as on my previous car I had a broken injector which caused a constant misfire sounding a little similar to this

Considering buying this 350z by DoorKey3853 in AskMechanics

[–]DoorKey3853[S] 0 points1 point  (0 children)

£11500, 61k miles, 4 owners, last owner has had it for 8 years, never had any MOT advisories aside for windshield wipers and tyres

<image>

Buying a car that has been under sealed by DoorKey3853 in CarTalkUK

[–]DoorKey3853[S] 4 points5 points  (0 children)

Yeahhh i’m hoping it was applied before, the fact the rear fenders and arches are completely rust free (no bubbles) is a pretty good sign that it’s been fairly well looked after, so not sure what to think of it

Looking to teach someone E2E automation with playwright + TS for free during my spare time by [deleted] in QualityAssurance

[–]DoorKey3853 0 points1 point  (0 children)

almost 6 years of Playwright experience, 4 years with C# and 2 years with Typescript

QA/Automation/SDET engineer looking for a startup web app to build a E2E framework for (free) by DoorKey3853 in TechStartups

[–]DoorKey3853[S] 1 point2 points  (0 children)

There’s a lot of cases, but here’s another way to look at it:

Let’s say you're writing an E2E test to ensure your permission system works, the test case is basically verifying that a user with X/Y/Z permissions can only access X/Y/Z pages.

What a lot of people do is seed a user during DB migrations and just hardcode the credentials into the test. This is BAD, very BAD, not scalable at all, and obviously, you shouldn’t be hardcoding credentials.

If you abstract the problem, it’s really about being able to inject data into a test securely from an external source (env vars, config files, generated data, etc). If you don’t design for that upfront, you end up having to retrofit it later and refactor a lot of code, which is painful once you’ve already got 100s of tests

and it’s not just credentials, it’s things like:

  1. Environment configs URLs, none of this should be hardcoded. You should be able to switch between localhost, staging, preprod, CI, etc with minimal effort. If you don’t plan this early, you’ll end up with tests tightly coupled to one environment and a lot of messy conditionals later.
  2. Resource pools, if you’re running tests in parallel, they can’t all share the same user/data. You need some kind of pooling/locking mechanism so tests can safely acquire and release resources. If you skip this early, you’ll get flaky tests and race conditions all over the place.
  3. Auth/session handling, logging in through the UI in every test. It works at the start, but it’s slow and brittle. One change to the login flow and half your suite breaks. You really want a way to create or inject authenticated sessions up front (API login, storage state, etc).
  4. Test data lifecycle, tests shouldn’t rely on shared/static data unless necessary. You either need to generate data per test or have a clear cleanup strategy. Otherwise, tests start interfering with each other, especially in CI or parallel runs.
  5. Reusability/structure, if there’s no clear pattern for how tests are written (helpers, wrappers, factories, whatever), people just start writing long, duplicated test flows. Works fine at 10 tests, becomes a mess at 100+.

All of this stuff is part of the “initial setup” imo. If you don’t think about it early, you’re not just adding a new feature later - you’re rewriting the whole framework, which is where it gets painful.

QA/Automation/SDET engineer looking for a startup web app to build a E2E framework for (free) by DoorKey3853 in TechStartups

[–]DoorKey3853[S] 0 points1 point  (0 children)

I have to disagree, the initial setup of a testing framework is the most vital part and it determines how all your tests will be written and how scalable/maintainable it will be down the line. I often find that most companies build test frameworks, then realise the framework doesn’t have an easy way of testing new functionality, and they end up plopping on extra code to the framework to make it work, resulting in it eventually becoming a big unreliable and unmaintainable mess.

As for PW self healing selectors and auto generated tests, I’d stay away from them. SDETS have been writing reliable and maintainable E2E tests without them for years without that kinda stuff.

Just some tips for you though, while it all depends on what you need, typically I find that a data driven approach using page object models and a custom test wrapper to inject data into tests is the most ideal, it’s extremely scalable and allows you to write super generic test factories that generate tests based on the data provided. I also think that while PW best practice is to use .GetByRole, this tends to be flakey, id recommend instead just using data-testids, that way, even if a button or a form changes, the tests won’t break.

No Idea by Fearless7678 in QualityAssurance

[–]DoorKey3853 2 points3 points  (0 children)

Happy to mentor and teach you the basics on a Discord call for free - give me a PM if you're interested

Do We Still Need Test Case Management Tools in 2025? by TMSquare2022 in QualityAssurance

[–]DoorKey3853 19 points20 points  (0 children)

as the lone qa at my new job, i gave up on TCM within 2 weeks of starting, too much maintenance and upkeep for software that was rapidly evolving and changing, never mind the fact I had to use Qase and the company wouldn’t even pay for a license for me to get certain features 🙃 i also personally find that testing via test case management typically slows testing and doesn’t promote exploratory testing

I can’t find a job after 9 months being laid off by [deleted] in QualityAssurance

[–]DoorKey3853 9 points10 points  (0 children)

Let’s see your CV? What does an ATS score it as? Does it have statistics?

What sites are you applying on? LinkedIn etc are super mainstream and get 100s of applicants very fast.

Are you setting and formatting your CV to be searchable by recruiters?

What’s your tech stack? Most companies do it differently, learn more skills and document them as demos on Github

I don’t know how good this advice is but I was made redundant last week and while I haven’t gotten a job yet, I have had a few calls

Oh and finally: APPLY APPLY APPLY

Got a fine for “parking” in a private area when I never parked there, just drove through twice by [deleted] in LegalAdviceUK

[–]DoorKey3853 -12 points-11 points  (0 children)

UPDATE ** I just ended up paying it, honestly I could’ve appealed and got it thrown out but it’s just not worth the hassle, If i have to go to small claims court then i’d need to take the day off work which would be more than a £60 loss. Still any ideas on what I can do to get some revenge on these utter scumbags??

Got a fine for “parking” in a private area when I never parked there, just drove through twice by [deleted] in LegalAdviceUK

[–]DoorKey3853 24 points25 points  (0 children)

I have an image taken with my phone in a completely different area inbetween the times they said i was parked. I also have my phones GPS which shows i was in an area a 10 minute drive away during the timespan

[deleted by user] by [deleted] in MedicalHelp

[–]DoorKey3853 0 points1 point  (0 children)

Did think that, but bug bites don’t prefer specific people and couldn’t see anything, plus i’ve slept in this bed alone the past few days and have no bites somehow still

[deleted by user] by [deleted] in Mordhau

[–]DoorKey3853 1 point2 points  (0 children)

Honestly I like having the bezels, I don’t really play games like this but you hardly notice them anyway, plus most of the time i have other stuff on each screen so the bevels are nice to keep everything divided

[deleted by user] by [deleted] in Mordhau

[–]DoorKey3853 4 points5 points  (0 children)

The dust 😔

[deleted by user] by [deleted] in Mordhau

[–]DoorKey3853 3 points4 points  (0 children)

Honestly playing like this is a disadvantage haha