
keyboardTester.ClickBefore you pay for a repair, a browser test using navigator.vibrate() forks the whole problem: settings vs a dead vibration motor. Here is the honest Android/iOS split and sourced repair costs.
This is a cross-post of a guide I originally published on KeyboardTester.click:
Phone Not Vibrating? Test Your Vibration Motor and Fix It.
When a phone stops vibrating, almost everyone guesses. Is it a setting? Is the motor dead? Do I need a repair? You can stop guessing in about ten seconds — and the trick is a browser API most web developers already know.
The Web Vibration API exposes a single function:
// A 200 ms buzz
navigator.vibrate(200);
// A pattern: vibrate 100 ms, pause 50 ms, vibrate 100 ms
navigator.vibrate([100, 50, 100]);
// Cancel any ongoing vibration
navigator.vibrate(0);
That call asks the operating system to fire the vibration motor directly, skipping your ringtone, Do Not Disturb, and per-app notification layers. So the result is clean evidence about the hardware itself:
I put a free, no-install tester at vibration-test.php that plays tap-to-run patterns (short pulse, one-second buzz, triple tap, SOS, heartbeat, and a custom millisecond pattern). Important honesty note: it triggers vibration; it cannot measure vibration strength — the browser has no API for that.
navigator.vibrate() is Android-only in practice. Two gotchas:
Worldwide that is still most phones: Android holds 69.14% of mobile OS share vs 30.79% for iOS (StatCounter, June 2026).
If the test buzzes, walk these in order: ring/vibrate mode → Do Not Disturb → "Vibrate on ring/notifications" toggles → battery saver (it throttles haptics) → per-app notification settings → the system haptic-strength slider. One of them is the culprit.
The Samsung "Never Play" haptics trap is a common one: a single toggle can silence feedback while everything else looks correct.
If it stays silent everywhere — no keyboard taps, no call buzz — price a fix with real numbers instead of dread:
A vibration motor is one of the cheaper board-level repairs. Under warranty/AppleCare+/carrier protection, a short video of the silent test is unambiguous claim evidence — Owl Repair attributes roughly 60% of no-vibration phones to hardware faults.
And the "factory reset first" advice you see everywhere? Skip it. If the browser test buzzes, the hardware is fine and a reset is a waste; if it is silent, a reset will not repair a motor.
If your phone's touchscreen also started misbehaving after a drop, a quick ghost touch test is worth running before you pay for anything, so one repair quote covers everything at once.