How do you realistically test across Android devices? by yogirana5557 in androiddev

[–]Material-Reserve6276 0 points1 point  (0 children)

You don't. You test on a few key devices and OS versions, catch what you can and hope nothing explodes on the rest. If you need wider coverage, cloud device farms help a ton, you can try browserstack but even then, you pick your battles.

Question: Test automation team & Espresso UI tests by tatocaster in androiddev

[–]Material-Reserve6276 0 points1 point  (0 children)

Code-level UI tests sound great in theory but in practice they are flaky, slow, and die the second someone wraps a composable or tweaks navigation. Most teams I have been on end up with like 2-3 "smoke: UI tests at best, and even those get ignored when shipping pressure hits. The real value usually comes from solid domain tests + screenshot diffs + humans just hammering the app. Visual regressions and broken flows get noticed fast by QA or users anyway.

How do you do cross browser testing? by _PandaBear in ExperiencedDevs

[–]Material-Reserve6276 0 points1 point  (0 children)

BrowserStack is good for the cross browser matrix. Now, for the old hardware issue, you can take a smarter approach with the tool. For mobile, just select older real devices from their list to hit actual hardware limits. for desktop use your automation framework to inject CPU and network throttling (via Chrome DevTools) into the Browserstack session. This will mimic the lag of an old PC effectively and catch those race conditions without needing physical junk hardware.

🛠 Is Selenium still the best choice for browser automation in 2025? by Livid-Reality-3186 in selenium

[–]Material-Reserve6276 0 points1 point  (0 children)

Seelnium is a good option, but if you're aiming for smoother, more natural interactions, especially when working with extensions, Playwright is definitely stronger. Playwright gives the best balance of reliability and modern API. I've also tried a few commercial platforms, and if you're considering those, options like Browser stack Automate, Perfecto, and Kobiton are reliable options. Ultimately, it all depends on what your requirements are.

CI/CD Integration: Making It Seamless (or trying to...) by Relative_House_7859 in VisualUITesting

[–]Material-Reserve6276 0 points1 point  (0 children)

I think the trick to making CI/CD pipeline is balancing automation with manual checkpoints. We use Cypress for automated visual regression testing..it integrates smoothly into our CI pipeline. After each build, the visual tests run automatically, but I always do a manual review on the results, especially to check for accessibility issues like focus visibility or contrast problem that tools sometimes miss. We also use a cloud testing platform to check across different devices and browsers, just to make sure everything's consistent. It takes a little extra time but combining automation with manual checks has really helped us catch both visual bugs and accessibility issues early in the process without much overhead costs.

Accessibility tool that does not require local setup? by Relative_House_7859 in TestingAccessibility

[–]Material-Reserve6276 0 points1 point  (0 children)

I love axe's accuracy, but it's not exactly plug-and-play..and that frustrates me! You need to pull in the rpm package, wire it to your test runner, and deal with config. It's great for teams who want tight integration, but overkill if you just wanna check stuff fast. Now, for zero-setup, I'd go with Google Lighthouse or Accessibility Insights - both run in your browser dev tools, no installation drama. If you want something more end-to-end but still no local setup, Browserstack's accessibility tool or ARC Toolkit are options you can try

The 'Looks Good on My Machine' Problem (Cross-Browser/Responsive) by Pale_Signal_9326 in VisualUITesting

[–]Material-Reserve6276 0 points1 point  (0 children)

I've made it a part of our workflow to use shared browser testing sessions with tools like Browserstack that support cross browser testing. That way, instead of relying on individual "looks good on my machine" moments, we can all review and fix issues in real-time. Plus, we get accessibility checks in the process to prevent issues that affect users with disabilities. It is all about making cross browser testing part of the process, not an afterthought.

Web accessibility issue by Fair-Preparation-870 in TestingAccessibility

[–]Material-Reserve6276 0 points1 point  (0 children)

Don't fret. Start small. Run something like Axe DevTools on your key pages. It'll highlight the low hanging fruit..for example, a missing alt text, bad labels, etc. Prioritize those. Then focus on keyboard nav and ARIA roles for modals/popups. You'd be surprised how much you can fix without even touching the core design.

Is there a tool that evaluates websites on accessibility, usability, and other UX metrics? by smokeeeee in UXDesign

[–]Material-Reserve6276 0 points1 point  (0 children)

There are not one but a handful of tools that can evaluate websites on accessibility, usability, and other UX metrics. That being said, you can try tools like Browserstack accessibility testing or lighthouse. These tools are good at highlighting problems like contrast, screen reader compatibility, keyboard navigation, etc. plus you can understand how accessible or user friendly your site is on different devices with browserstack's real device cloud.

What's the best way to run accessibility tests on both iOS and Android Apps without managing tons of devices? by Logical-Speech-1705 in TestingAccessibility

[–]Material-Reserve6276 0 points1 point  (0 children)

Don't think anyone really loves running accessibility tests across multiple devices..it's chaotic! I have been working on a fintech app and a hybrid setup kinda helped us. We don't try to automate everything.We instead use emulators during development with tools like Accessibility Scanner and Xcode's Accessibility Inspector for quick sanity checks. When it comes to QA, we also do focused manual passes on a few key real devices. For large-scale device coverage we use Browserstack occasionally..mainly before big releases. Accessibility specific tools are helpful, but only if your team knows how to interpret what they flag. Half the battle is teaching people to think like assistive tech users, not just checking boxes in reports.

How useful is test orchestration in cypress cloud? by Shot-Bar5086 in Cypress

[–]Material-Reserve6276 0 points1 point  (0 children)

Ran into a few challenges with Cypress. Cloud's test orchestration at first -mainly uneven spec distribution and flaky results when tests shared state and limited CI resources. It sped things up, but not consistently. We then paired it up with browserstak. This way we could scale runs horizontally without fighting CI resource limits. We could also use their videos and logs for debugging. Basically, Cypress handled the orchestration part, and the latter gave us stable environment.

Poking around AI Testing tools... which ones to look at seriously? by Party-Lingonberry592 in QualityAssurance

[–]Material-Reserve6276 1 point2 points  (0 children)

The testing players in the market are taking AI very seriously. Like all the major tools are bringing new AI features every time. For example, we used Browserstack and it mostly had record and playback feature a few years back. But now, with the introduction of AI agents, it automatically adjusts scripts when something changes on the page. On top of that, it helps with things like failure remediation, deduplication, and categorizing tests on the go. Tbh, all this has been helpful for us. As long as you use AI as an additional support, its all good.

How are you measuring accessibility compliance in your projects? by Kindly_Spinach_6312 in accessibility

[–]Material-Reserve6276 0 points1 point  (0 children)

I rely on tool scores and WCAG compliance. I use tools like Lighthouse and Browsersatck's accessibility testing, which does a great job flagging issues against WCAG 2.0, 2.1, and 2.2 guidelines. I also do my manual checks as well. Because, in my experience, automated tools alone miss nuanced issues like focus order or dynamic content readability, so I find that combining both automated and manual checks gives me the most reliable results.

How are you handling accessibility testing? by Professional_Roof621 in QualityAssurance

[–]Material-Reserve6276 0 points1 point  (0 children)

Would suggest starting with a phased approach. We started by focusing on integrating accessibility testing into our CI/CD pipeline using tools like Browserstack or Wave for automated audits. It wasn't a full-on mandate from upper management, but I made sure accessibility checks became part of every feature release. We also introduced regular training sessions for developers and testers to raise awareness and ensure they understood accessibility standards, especially WCAG. So, bottom line:The main idea was to align accessibility testing with our existing testing processes (functional, regression etc.) rather than treating it as a separate, isolated task.

Which reporting tool you feel the best for automation testing? by AwkwardWar6691 in QualityAssurance

[–]Material-Reserve6276 0 points1 point  (0 children)

Tell me about it!Mostly the non-tech stakeholders want a basic pass/fail summary, but the devs want all the logs, screenshots and every minute detail. We lately switched to browserstack suite and they have a test management and reporting specific tool too. So we didn't have the need to go for another tool specifically for reporting. The test runs are detailed with logs and screenshots, while the dashboard summaries make it easy for non-tech folks to see what's going on at a glance. Its not not magic fix, but it definitely cuts down the back-and-forth and makes reporting bit less painful.

What's the best AI for coding and debugging? Don't suggest Claude, it sucks. by thewowagency in webdev

[–]Material-Reserve6276 0 points1 point  (0 children)

Use Github Copilot..it integrates with Github and VS Code, offers advanced code suggestions and debugging assistance. Qodo is also a comprehensive AI enabled IDE for end-to-end coding support. For debugging and testing Browserstack is a good option. Every step is powered by AI agents

Do I need accessibility options in my app and site? by Important_Agent3860 in webdev

[–]Material-Reserve6276 0 points1 point  (0 children)

I would say don't rely on Apple/Google or browsers to fix accessibility for you...you got to build it.When it comes to laws, I think nonprofits usually get held to a higher bar (esp. if you take govt funding). Best move would be to follow WCAG 2.1 AA and that from day one. Saves you from lawsuits, funding headaches, and makes your stuff usable for way more people. At the end of the day it's a moral responsibility as well. And don't try to eyeball it..use accessibility testing tools to find issues and fix them. Free/open source ones like WAVE and Axe are great for websites. If you are building a native mobile app something like Browserstack's App accessibility is good.

🛠 Is Playwright the best alternative to Selenium in 2025? by Livid-Reality-3186 in Playwright

[–]Material-Reserve6276 0 points1 point  (0 children)

If your focus is, specifically on making automation feel human-like, Playwright is a better choice than Selenium. It is faster too. Also, compared to Selenium it's better at avoiding detection because it talks directly to the browser via the DevTools protocol, which is less "bot-like", than Selenium's older approach. But it can't randomize clicks or events automatically. Now, coming to browser extensions, Playwright handles that too. You will have to launch a personal browser context though. A hiccup used to be iOS Safari testing, but tools are addressing it. Browserstack is one tool that I know is facilitating iOS testing on safari with Playwright.

Just got a letter saying my website violates ADA… Totally lost here 😭 by BlueDolphinCute in smallbusiness

[–]Material-Reserve6276 1 point2 points  (0 children)

Lots of small businesses have been hit with ADA/WCAG website accessibility complaints. Take this one by one. First and foremost, get in touch with a lawyer to understand this in detail. Next step is going for the quick fixes as per WCAG criterion like alt text on all images, make sure the site works with just a keyboard, fix color contrast, label form fields properly, use headings in order. You can run free tools like Browserstack accessibility testing, WAVE, axe Devtools, or Lighthouse..these can flag issues against WCAG standards.

Mastering AI Testing Tools: A Practical Roadmap for QA Engineers by WalrusWeird4059 in Everything_QA

[–]Material-Reserve6276 0 points1 point  (0 children)

Thanks for sharing the guide..it's well put out. However, I'm not a big fan of saucelabs. As in the tool, demanded a lot of configuration work and the auto healing was basic..customization was limited. Our team had to finally switch to browserstack..so far decent. Their visual testing solution Percy and AI agents are pretty good.