HackerTrans
トップ新着トレンドコメント過去質問紹介求人

sgraphics8

3 カルマ登録 昨年

投稿

Don't give Fable all the power

starts.live
2 ポイント·投稿者 sgraphics8·8 日前·1 コメント

Building is free now. Being wanted isn't

starts.live
3 ポイント·投稿者 sgraphics8·10 日前·1 コメント

Show HN: Museum of Handwritten Code (If, While, Binary Search, Merge Sort)

museum.codes
4 ポイント·投稿者 sgraphics8·5 か月前·1 コメント

Show HN: FirstUser trying to give 4 guaranteed reviews for each product

firstuser.app
2 ポイント·投稿者 sgraphics8·11 か月前·2 コメント

Show HN: FirstUser – Exchange reviews for your product launches

firstuser.app
1 ポイント·投稿者 sgraphics8·11 か月前·0 コメント

[untitled]

1 ポイント·投稿者 sgraphics8·昨年·0 コメント

コメント

sgraphics8
·8 日前·議論
[flagged]
sgraphics8
·10 日前·議論
[flagged]
sgraphics8
·11 か月前·議論
Fair point - feedback should mainly come from real customers. But with so many AI-built and solo projects, most launches never reach that audience and just sink. it isn't meant to replace customer input but give makers a baseline of thoughtful peer reviews so they can iterate instead of getting demotivated by silence.

Isn't that better than just a registry (PH, Uneed and 100 others) that takes money and does very little?
sgraphics8
·昨年·議論
Hi HN,

I'm building Testr — an AI-powered browser automation/testing tool where you just describe what to test: "check login", "verify newsletter signup", etc. Kind of QA solution for vibe-coders

Under the hood, it’s a real challenge. No wonder AI browser automation is not yet a public good (OpenAI Operator I believe is in reserch preview).

I tried:

- Asking GPT-4o for pixel coordinates → failed

- Treating the screen like a chessboard and asking for coordinates → semi-broken

- Using HTML parsing alone → couldn’t deal with dynamic content or iframes

- Scrolling + hybrid DOM parsing + visibility scoring → finally good enough

For example, modern sites load 10+ iframes (like cookie banners) and bury the important CTAs inside one of them. AI often gets confused by elements not in view. And it refuses to use any coordinate system (pixel coordinates, transparent coordinate overlays).

Eventually I resorted to:

- Injecting custom numbered hit-testable overlays

- Randomizing highlight colors

- Using a hybrid visibility model to bias the AI toward clickable elements

- Keeping scroll position in sync with visible interaction zones

You can try the tool here: https://testr.pro (Note: currently requires signup, but you get 10 free credits to run tests.)

Happy to go deep on technical stuff. I'd love feedback:

- Any ideas to improve interaction targeting?

- Better ways to auto-scroll or discover hidden UI?

- Anyone else trying to make AI click like a human?

Here's a dev thread I wrote with some of the struggles: https://x.com/sgraphics8/status/1935244464559149396

– SG