EnableEdge Profile Banner
EnableEdge Profile
EnableEdge

@EnableEdge

Followers
15
Following
62
Media
19
Statuses
249

40% faster releases, 30% lower QA spend, see ROI in a days with AI testing. Ready to solve your QA challenges? Book a free call

India
Joined February 2025
Don't wanna be here? Send us removal request.
@EnableEdge
EnableEdge
2 months
🚀 Mumbai Devs & Founders! Get a FREE QA Fast-Track Audit (₹15,000 value) for your app or website. Only 5 slots! Improve your quality fast. ✅ Follow @EnableEdge.✅🔁 this tweet. Tag someone building apps/websites. ⏳ 48 hours only!.#MumbaiTech #QA #AppTesting #Trending #DevLife
Tweet media one
0
0
0
@EnableEdge
EnableEdge
1 month
RT @theTestTheTest: Couldn’t have said it better.
0
1
0
@EnableEdge
EnableEdge
2 months
From Syntax to Semantics. No more wrestling with boilerplate. You’ll describe what you want in natural language, and AI will figure out how to implement it. Intent becomes the new code.
0
0
0
@EnableEdge
EnableEdge
2 months
In an era where AI transforms software development, the most valuable skill isn't writing code - it's communicating intent with precision.
1
0
0
@EnableEdge
EnableEdge
2 months
From Words to Workflows: The Future of Coding Is Conversational. Unleash the #NewCode: Speak your intent, let AI build the software. Sean Grove shows how OpenAI agents are transforming coding into conversation. Watch now.
1
0
0
@EnableEdge
EnableEdge
2 months
“Legacy or liberating? Waterfall vs. modern dev (Agile/DevOps)-when did each win or fail in your world? Drop your war stories, horror tales, and secret sauces. Let’s dissect use-cases, mindsets & cultures. #SoftwareDev #Agile #Waterfall #DevOps.
0
0
0
@EnableEdge
EnableEdge
2 months
Those who worked on Windows 98 and still deep in real coding and real testing-devs and QA testers, how many of you are keeping your skills sharp? Hats off for constant upgrades! 🎩🙌 #RealCoding #RealTesting #ContinuousLearning
0
0
1
@EnableEdge
EnableEdge
2 months
Help Shape the Roadmap Contributions welcome! Raise issues, share plugin idea, submit PRs to add new diagnostics (Kubernetes health checks, custom API validations, and more). Build smarter diagnostics—together! #SRE #CI_CD #CommunityPowered.
github.com
Contribute to enableedge/Diagnostic-Runner development by creating an account on GitHub.
0
0
0
@EnableEdge
EnableEdge
2 months
Extensible & Configurable 🔧 Tweak thresholds (page_load_standard_ms, api_slow_th, image_size_standard_kb) or extend with your own checks in Python. Want security scans, accessibility audits, or custom endpoint tests? Tell us what you’d add! #OpenSource.
github.com
Contribute to enableedge/Diagnostic-Runner development by creating an account on GitHub.
1
0
0
@EnableEdge
EnableEdge
2 months
Works with GitHub Actions, Jenkins, Azure DevOps—where will you run it?👇 #ContinuousTesting #QA #OpenSource.
github.com
Contribute to enableedge/Diagnostic-Runner development by creating an account on GitHub.
1
0
0
@EnableEdge
EnableEdge
2 months
Manual QA bottlenecks and fragmented test coverage slow releases and leave critical defects undetected in production. agree?.
0
0
0
@EnableEdge
EnableEdge
2 months
Ever asked @Copilot How do I deploy my React app?” and “How do I deploy my React Native app?” .They sound alike…but live in two different universes.
0
0
1
@EnableEdge
EnableEdge
2 months
Even @Copilot reply same, when any site is down from UI backend server gives 200 still it says website is active. So even AI need to improve his response. right @grok.
0
0
0
@EnableEdge
EnableEdge
2 months
🚨 Server replies #200OK, but your UI just ghosted users? 🚨 Blank screens and 403s = ultimate #FOMO. Flip that script with real-time, end-to-end monitoring—no buffering, no #ghosting. Keep your UX 🔥 and your audience engaged!. #DevOps #SiteReliability #Monitoring #UX.
1
0
0
@EnableEdge
EnableEdge
2 months
Patching CSS can make your tests green, but ask why the element was hidden. Balancing test reliability with real-world UX keeps your automation both robust and meaningful.
0
0
0
@EnableEdge
EnableEdge
2 months
Only tweak the specific opacity: 0 rule, not your entire stylesheet. Whenever possible, wait for true visibility:. new WebDriverWait(driver,10). until(ExpectedConditions.elementToBeClickable(locator));.
1
0
0
@EnableEdge
EnableEdge
2 months
Cypress makes it even easier:.cy.get(selector).click({ force: true });.
1
0
0
@EnableEdge
EnableEdge
2 months
Playwright.await page.$eval(selector, el => ));.
1
0
0
@EnableEdge
EnableEdge
2 months
Bypass visibility entirely with a JS-driven click: Selenium:.((JavascriptExecutor)driver).executeScript("arguments[0].click();", elem);.
1
0
0
@EnableEdge
EnableEdge
2 months
Or inject Global Rule.page.addStyleTag({ content: '* { opacity: 1 !important }' });.
1
0
0