Activity
Mon
Wed
Fri
Sun
Jun
Jul
Aug
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
What is this?
Less
More

Memberships

AI & QA Accelerator

604 members โ€ข Free

AI Automation Agency PH

2.8k members โ€ข Free

11 contributions to AI & QA Accelerator
AI Generated Code = Framework Quality.
Two Test Frameworks. Same AI Agent. Same Prompt. Same Task. ๐—”๐—ฑ๐—ฑ ๐—ฎ ๐—น๐—ผ๐—ด๐—ถ๐—ป ๐˜๐—ฒ๐˜€๐˜. Framework 1 result: - Test passes on first run. - Credentials pulled from the fixture. - File placed in the right folder. - Naming follows the existing convention. - Page object used. No raw selectors. Framework 2 result: - Test technically runs. - Credentials hardcoded directly in the test. - New file dropped in the root directory. - Named `test_new.py.` - Raw selectors everywhere. No page object in sight. The test in Framework 1 looks like if was written by an actual engineer. The test in Framework 2 is a mess, it is kinda of working... but still a complete mess. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ๐Ÿง  ๐‡๐ž๐ซ๐ž ๐ˆ๐ฌ ๐–๐ก๐ฒ The AI Agent does not decide what good tests look like. It reads what already exists in your repo and continues the pattern. Framework 1 had fixture files, page objects, consistent naming, and a clear folder structure. The agent read all of that. Matched against it. Wrote a test that fits right in. Framework 2 had hardcoded values, raw selectors, no structure, and copy-pasted setup code in every file. The agent read that too. It draws one conclusion: this is the standard here. And continued exactly that pattern. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ๐Ÿ“Œ ๐“๐ก๐ž ๐”๐ง๐œ๐จ๐ฆ๐Ÿ๐จ๐ซ๐ญ๐š๐›๐ฅ๐ž ๐“๐ซ๐ฎ๐ญ๐ก Before you hand your repo to an agent, ask yourself one question: โ€œWould I be comfortable showing this code to senior engineers?โ€ If yes, start using AI coding agents. If no, fix the framework issues first, then bring in AI. Because it wonโ€™t fix bad test automation code. It will scale it. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Want to learn how to use AI coding agents in test automation ? Checkout this live workshop. ๐Ÿ‘‰ https://www.skool.com/qa-automation-career-hub/welcome-to-qa-automation-roadmap-lab-start-here
AI Generated Code = Framework Quality.
2 likes โ€ข 17d
Haha, now it makes sense why it did not work for me๐Ÿ˜‚
API Testing with AI Coding Agents
Most beginners make one mistake when they start using AI coding agents for test automation. They start with UI. That is usually where the workflow gets noisy, flaky, and hard to debug. So they blame the agent. A better first step is API testing. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 1. ๐€๐๐ˆ ๐ญ๐ž๐ฌ๐ญ๐ข๐ง๐  ๐ข๐ฌ ๐ฆ๐จ๐ซ๐ž ๐๐ž๐ญ๐ž๐ซ๐ฆ๐ข๐ง๐ข๐ฌ๐ญ๐ข๐œ With API testing, you usually work with: - Auth - Request payload - Status code - Response body Those parts are easier to define. That makes API tests easier for the agent to execute and easier for you to review. UI testing has more noise: - Loading delays - Dynamic elements - Changing locators - Rendering issues - Timing problems It is just a harder place to start. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 2. ๐€๐๐ˆ ๐ฐ๐จ๐ซ๐ค๐Ÿ๐ฅ๐จ๐ฐ๐ฌ ๐š๐ซ๐ž ๐ž๐š๐ฌ๐ข๐ž๐ซ ๐ญ๐จ ๐ซ๐ž๐ฉ๐ž๐š๐ญ Most API testing workflows follow the same pattern. - Get auth token. - Send request. - Check response. - Assert result. AI coding agents do better when the workflow is clear and repeatable. API testing gives them that. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 3. ๐ˆ๐ญ ๐ข๐ฌ ๐ž๐š๐ฌ๐ข๐ž๐ซ ๐ญ๐จ ๐ฏ๐ž๐ซ๐ข๐Ÿ๐ฒ ๐ฐ๐ก๐š๐ญ ๐ญ๐ก๐ž ๐š๐ ๐ž๐ง๐ญ ๐ฐ๐ซ๐ข๐ญ๐ž๐ฌ Most API tests are smaller and easier to review than UI flows. You can quickly check: - is the endpoint correct - is the auth flow correct - is the payload correct - do the assertions make sense - is the status code handled correctly This matters a lot. If you cannot verify the output, do not trust the output. That rule matters even more with AI coding agents. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ If you are new to AI coding agents for QA, start with API endpoints. 1. Create a short context doc. 2. Explain the auth flow. 3. Add example requests. 4. Define what success looks like. Then let the agent work. Review the output. Re-run. Repeat. That is one of the fastest ways to build real skill with AI test automation. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ๐Ÿ“Œ Want to learn how to use AI coding agents in test automation ? Checkout this live workshop.
API Testing with AI Coding Agents
2 likes โ€ข 17d
Agree 100%, UI testing is too difficult and it costs more tokens.
(New Members Start Here) Welcome to AI & QA Accelerator!
๐Ÿ‘‹ Hey there! ๐–๐ž๐ฅ๐œ๐จ๐ฆ๐ž ๐ญ๐จ ๐€๐ˆ & ๐๐€ ๐€๐œ๐œ๐ž๐ฅ๐ž๐ซ๐š๐ญ๐จ๐ซ. AI is changing Software Development. And it is changing QA with it. QA Engineers who know how to use AI will: โฌฉDeliver in days what used to take two weeks โฌฉDo work that used to require deep expertise. With AI, basic knowledge can produce senior-level results โฌฉGet instant AI feedback on tests, code, and debugging decisions The same applies to Software Developers. AI multiplies their delivery speed. QA becomes the bottleneck. That's why companies are fighting to hire QA Engineers who can match that speed. ๐Ÿ’ก In fact, as of early 2026, many companies started adding AI coding tasks to their interview process. QA Engineers who ignore AI won't just fall behind, they risk losing their career entirely. That's not doomsaying. In 2026, tech companies laid off 55,775 people (https://www.trueup.io/layoffs). So, are those layoffs because AI is replacing people? No. AI is not replacing anyone. People who use AI are replacing people who donโ€™t. Unlike the transition from Manual Testing to QA Automation, which took a decade, this shift is happening fast. Capable AI Coding Agents only became real in late 2025. Just a few months later, the entire tech world had changed. That's what this community is about. It's for people who see this shift and understand that right now is not just a pivotal moment for them. It's a short golden window to become one of the first truly AI-Powered QA Automation Engineers / SDETs and set yourself up for a long, safe, and extremely high-paying QA career. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ๐€๐›๐จ๐ฎ๐ญ ๐Œ๐ž, ๐š๐ง๐ ๐ฐ๐ก๐ฒ ๐ˆ ๐š๐ฆ ๐›๐ฎ๐ข๐ฅ๐๐ข๐ง๐  ๐ญ๐ก๐ข๐ฌ ๐‚๐จ๐ฆ๐ฆ๐ฎ๐ง๐ข๐ญ๐ฒ I'm ๐Œ๐š๐ญ๐ฏ๐ข๐ฒ, a Vegas-based ๐๐ซ๐ข๐ง๐œ๐ข๐ฉ๐š๐ฅ ๐’๐ƒ๐„๐“ with ๐Ÿ๐ŸŽ+ ๐ฒ๐ž๐š๐ซ๐ฌ ๐จ๐Ÿ ๐ž๐ฑ๐ฉ๐ž๐ซ๐ข๐ž๐ง๐œ๐ž. Iโ€™ve worked across startups and large enterprises, building QA automation frameworks and testing infrastructure across pretty much all modern stacks and tools. In 2025 I introduced AI coding agents into my team's QA Automation workflows. The team adopted it. Management noticed.
(New Members Start Here) Welcome to AI & QA Accelerator!
6 likes โ€ข 17d
I finished the workshop today. The price was steep for me (I'm not in the US), but it genuinely delivered, no regrets at all. I follow the news and read articles to stay updated with all AI things, yet I'd say I knew almost none of the material going in. I hadn't realized how much I was missing. What I liked most is that everything is framed from a test automation perspective, I can clearly see where to start applying what I learned at work, beginning tomorrow. And the group was small (only 2), so I could ask questions whenever I needed to. After this, I'm not sure I could go back to courses, it's so much faster when you can ask as you go. 5/5. Highly recommend!๐Ÿคฉ
Understanding the Software Release Process: CI/CD for QA Engineers and SDETs
If youโ€™re a beginner QA automation engineer or SDET (or want to become one), understanding how code goes from a developerโ€™s laptop to production is a key skill to grow beyond just โ€œwriting testsโ€. In this guide, Iโ€™ll walk step by step through the software release process: โ€ข What a CI/CD pipeline is โ€ข What happens during the buildโ€“deployโ€“test cycle โ€ข Where QA fits into each stage By the end, youโ€™ll have a clear picture of how releases work and how this knowledge helps you design better, more reliable automated tests. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ๐ŸŸข There are many ways teams release software, but most of them are just variations of two main approaches โžค ๐Œ๐š๐ง๐ฎ๐š๐ฅ ๐‘๐ž๐ฅ๐ž๐š๐ฌ๐ž: Developer writes code โ†’ someone manually builds the app โ†’ someone manually deploys it โ†’ someone manually runs tests. Slow, error-prone, and hard to repeat the same way every time. โžค ๐€๐ฎ๐ญ๐จ๐ฆ๐š๐ญ๐ž๐ ๐‘๐ž๐ฅ๐ž๐š๐ฌ๐ž: Developer pushes code โ†’ Jenkins/GitHub Actions automatically builds โ†’ Automatically deploys to QA โ†’ Automatically triggers your test suite. Fast. Consistent. Reliable. Companies automate these repetitive tasks so they can release software faster with fewer bugs. Understanding this pipeline is essential if you want to move beyond writing basic test scripts and be treated as a real QA Automation Engineer / SDET. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ๐ŸŸข ๐“๐‡๐„ ๐“๐‡๐‘๐„๐„ ๐’๐“๐€๐†๐„๐’ ๐Ž๐… ๐’๐Ž๐…๐“๐–๐€๐‘๐„ ๐‘๐„๐‹๐„๐€๐’๐„ Every software release follows the same pattern. Tools like Jenkins, GitHub Actions, and GitLab CI/CD automate these stages so releases happen in minutes, not hours: โ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆ ๐Ÿ. ๐๐”๐ˆ๐‹๐ƒ ๐’๐“๐€๐†๐„ ๐Ÿ“ฆ (๐“๐ฎ๐ซ๐ง๐ข๐ง๐  ๐‚๐จ๐๐ž ๐ˆ๐ง๐ญ๐จ ๐’๐จ๐ฆ๐ž๐ญ๐ก๐ข๐ง๐  ๐ƒ๐ž๐ฉ๐ฅ๐จ๐ฒ๐š๐›๐ฅ๐ž) Raw code can't just run on a server. It needs to be built into an artifact - a packaged, executable version of your application. ๐–๐ก๐š๐ญ ๐ก๐š๐ฉ๐ฉ๐ž๐ง๐ฌ ๐ข๐ง ๐ญ๐ก๐ข๐ฌ ๐ฌ๐ญ๐š๐ ๐ž: โŸฉ Dependencies get installed - External libraries and frameworks your code needs (npm install, pip install, Maven dependencies) โŸฉ Code gets compiled and packaged - Source code becomes executable format:
Understanding the Software Release Process: CI/CD for QA Engineers and SDETs
1 like โ€ข Nov '25
[attachment]
QA Automation Engineer Job Review: Playwright, Python, Remote ($100K-$150K) - What You Need to Know
๐Ÿ“Œ ๐—ช๐—ต๐—ฎ๐˜'๐˜€ ๐˜๐—ต๐—ฒ ๐—ท๐—ผ๐—ฏ? ๐—ฅ๐—ผ๐—น๐—ฒ: QA Automation Engineer - Playwright/Python (Remote) ๐—–๐—ผ๐—บ๐—ฝ๐—ฎ๐—ป๐˜†: Via CyberCoders (recruiting firm) ๐—ฃ๐—ฎ๐˜† ๐—ฅ๐—ฎ๐—ป๐—ด๐—ฒ: $100,000 โ€“ $150,000 + Bonus ๐—Ÿ๐—ผ๐—ฐ๐—ฎ๐˜๐—ถ๐—ผ๐—ป: Remote (New York, NY based) ๐—ฆ๐˜๐—ฎ๐—ฐ๐—ธ: Playwright, Python, API testing, E2E automation ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—ต๐—ฒ๐—ฟ๐—ฒ: [https://www.linkedin.com/jobs/view/4334981914] This is actually one of the more realistic QA Automation job postings I've seen lately. ๐Ÿ”— ๐—ช๐—ต๐˜† ๐˜๐—ต๐—ถ๐˜€ ๐—ผ๐—ป๐—ฒ ๐˜€๐˜๐—ฎ๐—ป๐—ฑ๐˜€ ๐—ผ๐˜‚๐˜: They're not playing title inflation games. They call it what it is: ๐—ค๐—” ๐—”๐˜‚๐˜๐—ผ๐—บ๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐—˜๐—ป๐—ด๐—ถ๐—ป๐—ฒ๐—ฒ๐—ฟ. No "Senior Software Engineer in Test" or "Principal Quality Architect" nonsense. Just straight to the point. ๐Ÿ“Œ ๐—ง๐—ต๐—ฒ ๐—ฟ๐—ฒ๐—ฎ๐—น ๐˜€๐˜๐—ผ๐—ฟ๐˜†: This company built a B2B platform for high-stakes operations. Not consumer-facing, but mission-critical stuff. The kind of software that can't afford to break. They need someone who can build solid test automation infrastructure and actually code, not just record-and-playback scripts. โš ๏ธ ๐—ช๐—ต๐—ฎ๐˜ ๐˜๐—ต๐—ฒ๐˜†'๐—ฟ๐—ฒ ๐—ฎ๐—ฐ๐˜๐˜‚๐—ฎ๐—น๐—น๐˜† ๐—น๐—ผ๐—ผ๐—ธ๐—ถ๐—ป๐—ด ๐—ณ๐—ผ๐—ฟ: โœ… 2+ years of E2E & API test automation using ๐—ฃ๐—น๐—ฎ๐˜†๐˜„๐—ฟ๐—ถ๐—ด๐—ต๐˜ โœ… Hands-on coding in ๐—ฃ๐˜†๐˜๐—ต๐—ผ๐—ป (they specifically say "not just scripting") โœ… Building QA infrastructure - test environments, performance testing, security tooling โœ… Experience testing complex web applications โœ… Manual testing when automation gaps exist ๐—•๐—ผ๐—ป๐˜‚๐˜€ ๐˜€๐—ธ๐—ถ๐—น๐—น๐˜€: JavaScript, C#, WebGL, performance/security/accessibility testing, telemetry tools ๐ŸŸข ๐—ช๐—ต๐—ฎ๐˜ ๐—œ ๐—น๐—ถ๐—ธ๐—ฒ ๐—ฎ๐—ฏ๐—ผ๐˜‚๐˜ ๐˜๐—ต๐—ถ๐˜€ ๐—ฝ๐—ผ๐˜€๐˜๐—ถ๐—ป๐—ด: They're honest about needing someone who can code, not just "write test scripts." They acknowledge manual testing is still part of the job, no pretending it's 100% automation. The salary range is realistic for mid-to-senior level QA automation ($100k-$150k). They list actual tools (Playwright, Python) instead of vague "automation experience." ๐Ÿšฉ ๐—ง๐—ต๐—ฒ ๐—ฐ๐—ฎ๐˜๐—ฐ๐—ต: It's posted by CyberCoders, a recruiting firm. That means you're not applying directly to the company. Over 100 applicants already, competition is real. "2+ years" sounds entry-level, but they want someone building QA infrastructure. That's more like 3-5 years of actual experience.
QA Automation Engineer Job Review: Playwright, Python, Remote ($100K-$150K) - What You Need to Know
4 likes โ€ข Nov '25
I really have to start learning Automation to be able to apply to this job market; the availability of Manual QA jobs just keeps shrinking and shrinking.
1-10 of 11
Ellen Castillo
3
6points to level up
@ellen-castillo-8673
Experienced Tester

Active 17d ago
Joined Oct 17, 2025
Powered by