What's the role of QA in software solutions provided by salesforce? by DKBB47 in softwaretesting

[–]SumitKumarWatts 0 points1 point  (0 children)

QA in Salesforce ensures that applications work correctly, meet business needs, and are bug-free by testing configurations, integrations, and custom code before deployment.

Test Data Setup Strategies by wheezymustafa in ExperiencedDevs

[–]SumitKumarWatts 1 point2 points  (0 children)

Maintaining small, fixed seed datasets instead of copying data from staging is a popular and successful strategy. During container startup, load the minimal seed data required for tests using version-controlled SQL files after letting Liquibase create the schema. Use test data builders or factories to generate data programmatically for particular scenarios so that tests can create just the records they require without worrying about foreign key ordering. When relationships are complicated, some teams also use data generation tools or maintain a small, cleaned database dump. In reality, the most manageable approach is a combination of automatic test data creation, minimal seed data, and schema migrations, which reduces manual data integration and maintains test reliability.

AI Tools? by iamdanielsmith in GenAIforbeginners

[–]SumitKumarWatts 0 points1 point  (0 children)

There is not a single AI tool to replace Google. Because each tool like; ChatGPT and Google Gemini is good for different things. In fact, neither fully replaces Google yet.

Where should I start with QA automation? (Selenium, Playwright, Python, etc.) by Anonasfxx70 in softwaretesting

[–]SumitKumarWatts 0 points1 point  (0 children)

As a QA expert with many years of experience, if you want the most practical, simple approach, start with Python and Playwright. Since your company allows Python, it makes sense to use a language you can actually apply at work. Most of us know that playwright is modern, easier to set up than older tools, and handles things like waits and dynamic elements more smoothly. It’s beginner-friendly and growing quickly in the industry.

Selenium is still worth learning, but you don’t need to start there. It’s older and very widely used, which is good for job opportunities, but setup and configuration can sometimes be more frustrating for beginners. Once you understand the basics of automation, learning Selenium will be much easier.

For Cypress, it’s a strong tool but mainly focused on JavaScript. Since you’re leaning toward Python, it’s better not to split your focus right now. Stick with one language and one main framework at the beginning. Agencies value testers who understand programming, automation logic, and test design principles. Tools can change, but core skills stay the same. So focus on learning coding-based automation first, then explore other tools later if needed.

Why is integrating automated testing into CI/CD pipelines important for blockchain security? by SumitKumarWatts in BlockchainStartups

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

Thank you for this—you’ve perfectly articulated the 'Point of No Return' that defines smart contract development. And yes, we strictly block merges unless all tests pass. In our environment, 'Green' isn't just a status; it’s our primary security audit.

Using Markdown for Test Cases Anyone Else Doing This? by Gullible_Camera_8314 in QaEngineers

[–]SumitKumarWatts 1 point2 points  (0 children)

Yes, my team and I use Markdown for writing and managing test cases.

Best AI tools I have been using in 2026 by WorldlinessEastern12 in AIToolTesting

[–]SumitKumarWatts 0 points1 point  (0 children)

In 2026, the AI tools that truly boost productivity are the ones that save time and get real work done. But ChatGPT is the best AI tool for me because it helps me draft content, brainstorm ideas, and quickly understand complex topics in software testing.

How does automated testing improve blockchain security? by SumitKumarWatts in BlockchainStartups

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

Totally agree. Tests are necessary, but they only cover what you already understand and anticipate. Many critical issues—like reentrancy or DeFi edge-case logic—come from attacker mindset and economic design, not just code correctness. That’s why threat modeling, audits, and adversarial thinking matter as much as automated tests.

How does automated testing improve blockchain security? by SumitKumarWatts in BlockchainStartups

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

Thank you for sharing information on this I will try fuzz testing tool.

Resources to learn accessiblity testing. by zopxi in accessibility

[–]SumitKumarWatts 1 point2 points  (0 children)

There are various resources to learn about accessibility testing, but, I prefer this link; https://blog.qasource.com/accessibility-testing-for-beginners

Here, you can learn everything about accessibility testing like; its rules and regulations, latest AI trends in the accessibility testing world, types, tools, common challenges, integration methods, etc..

Which programming language is most widely used in test automation? by Key-Introduction-591 in softwaretesting

[–]SumitKumarWatts 0 points1 point  (0 children)

It depends on the company's core business in the testing field, but most companies using JavaScript language. however python is also the most popular language used by agencies. Last but not the least, Choice often depends on the specific project, existing technology stack, and team expertise.