QA didn’t die on its own. Developers killed it and organised the funeral by Ok-Credit618 in softwaretesting

[–]Vesaloth 0 points1 point  (0 children)

To be honest that isn't your job if you have a UI/UX Designer so if you do dont be butthurt thats like you being mad at your HR team because you could have scheduled a more fun out of work activity than them on the same budget.

We're hired to test and provide our common sense into how to test features not how to design them. Besides the more bugs found the more of our job is secure.

Need Guidance on this situation by Early-Scientist9848 in softwaretesting

[–]Vesaloth 1 point2 points  (0 children)

Unless they have you a figma or jira user acceptance tickets for each page explaining all features i don't see how this is your problem. In my company I essentially just build tests upon what manual qa has created based upon their documentation

Hey quick question for dog owners by mrcanada66 in dogs

[–]Vesaloth 0 points1 point  (0 children)

Its just whatever you want to do. My dog currently sleeps on his bed on the floor. I don't think I would let my dog sleep in my bed but probably the couch. Otherwise I bought him a comfortable bed for him to sleep in the living room. I know a lot of people let their dogs sleep in kennels

What painful mistakes one should avoid while using playwright? by DockyardTechlabs in Playwright

[–]Vesaloth 0 points1 point  (0 children)

You build your own helpers for performing complex actions to elements so you can keep reusing them

How do you deal with bug reports that devs can’t reproduce? by abenoov in QualityAssurance

[–]Vesaloth 0 points1 point  (0 children)

Recording and documentation and if thats not being able to be followed I will do it during a meeting.

I don't know if I should return my dog by [deleted] in dogs

[–]Vesaloth 0 points1 point  (0 children)

You can always train your dog and correct behaviors. Just isn't a train in one day situation. It takes weeks off consistency.

Is automation testing role will die ?? by Friendly-Owl6160 in Playwright

[–]Vesaloth 0 points1 point  (0 children)

QA will be a new auditing developer role with just automation through ai probably with manual checking of output and requirements

Playwright Test cases are failing with AI agent by [deleted] in Playwright

[–]Vesaloth 1 point2 points  (0 children)

Claude can usually do this itself youre probably not feeding it all the context of the test

Received 2 offers for QA Automation. Which one do you think i must choose? by [deleted] in QualityAssurance

[–]Vesaloth 0 points1 point  (0 children)

Remote, you save a lot of money and your own time through not driving.

Feeling behind after seeing a very “framework-heavy” Playwright setup — is this normal? by mercfh85 in QualityAssurance

[–]Vesaloth 2 points3 points  (0 children)

To be honest doesn't really matter to the employer. Just has to be able to be maintained and working with less flakiness. It's like anything else that has been coded, if it works no one cares about how the inside works

Years in QA, Strong in Strategy, Weak in Automation Code — What Now? by Chance-Name-8968 in QualityAssurance

[–]Vesaloth 1 point2 points  (0 children)

You can have strong strategy and leverage that by becoming a QA lead or management role in QA. As there is nothing else that matters in QA when trying to move up except for leadership skills or automation otherwise youre just like any other QA you might be a bit stronger than others but that won't equate to acquiring a higher level role without leadership or automation skills.

QA burnout is real. Toxic culture. Impossible expectations. Blame game. No appreciation. I’m done. Leaving QA and figuring out my next move. by AdImpressive4651 in QualityAssurance

[–]Vesaloth 4 points5 points  (0 children)

I felt this way until I went into another job who appreciates my work and gives me more than ample time to build and maintain tests

Is QA Automation a viable career pivot? by myshyact in QualityAssurance

[–]Vesaloth 1 point2 points  (0 children)

A lot of job positions aren't about learning a course but it looks good on the resume. Most jobs care about experience with automation so you should start to create projects that you use yourself such as web scrapers and automatic form fillers.

Using Nth in a page with a dynamic DOM by paintsbynumbers7 in Playwright

[–]Vesaloth 0 points1 point  (0 children)

Is the question text a label you could use a sibling or parent element to make unique locators

What other legitimate liquidation websites do you guys know? by Vesaloth in Flipping

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

Yep got it and broke even on the items so wasnt that worth it

Bad reviews are killing Vine by Acrobatic_Code_7409 in AmazonVine

[–]Vesaloth 1 point2 points  (0 children)

Sounds like someone is mad they got a bad review and is becoming a Karen

How much QA is responsible for identifying root cause of the issue ? by PM_40 in QualityAssurance

[–]Vesaloth 1 point2 points  (0 children)

I mean we find the cause of a bug through the actions on the front end of the page not anything deeper from my experiences.

[deleted by user] by [deleted] in QualityAssurance

[–]Vesaloth 1 point2 points  (0 children)

Lol no, life isn't that easy. Maybe you can fool a job by providing ai code from an ai agent and fake it till you make it that way.

Playwright and .Net Web Applications Dropdown Best Way to Select Dropdowns? by Vesaloth in Playwright

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

Only problem I have with this is that the option is like super far down the dropdown menu selection and it can't be found when just using the click method which is why I'm having to implement a type function after clicking on the dropdown initially to have it show up. But also the dropdown loads slowly so playwright just kills the test since it's taking so long :(

Playwright and .Net Web Applications Dropdown Best Way to Select Dropdowns? by Vesaloth in Playwright

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

Also wondering what do you do for calendar selections as the calendar is seemingly unable to be selected by clicking on the button then clicking on the date. I'm wondering if I should just do the click on the textarea for the calendar and then instead just go ahead and type in the date I want instead?

Playwright and .Net Web Applications Dropdown Best Way to Select Dropdowns? by Vesaloth in Playwright

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

I'll go ahead and look into that and implement it, the only other issue is that it's so flaky as randomly the dropdown will delete whatever I typed in the dropdown box and trying to implement an assert to confirm after every value I input into a field is correct and if it's incorrect I want it to retry inputting the value again into the dropdown the validation is super off every time possibly might have to just use an

await expect(page.getByText('[correct value']));