Link your phone number
Each phone number can only be linked to one project at a time. If you want to test a different project, unlink from the current one first.
Send test messages
Once your number is linked, open WhatsApp on your phone and send a message to your bot’s number. The message flows through your bot code in real time — you’ll see a response just as any user would.Try a test template on your linked phone
Once you’ve linked a phone, the Paige Dev card has a Try now button (tooltip: Try it on your phone). Click it and Paige delivers a pre-built Meta template — with an embedded flow-trigger button — straight to your linked WhatsApp number, so you can verify template rendering and flow buttons end-to-end without doing a full deploy.- The send is rate-limited to 5 successful sends per linked number, per rolling 24 hours. Failed sends are recorded so you can retry without exhausting the limit on an error.
- If the test template hasn’t been configured on your environment, the button shows a clear error instead of failing silently.
Test the happy path
Walk through the primary use case your bot is designed for to confirm the core flow works end to end.
Test edge cases
Send unexpected inputs — empty messages, long strings, emojis, or out-of-order replies — to see how your bot handles them.
Check conversation state
If your bot stores state between messages (for example, multi-step flows), test that the state carries over correctly across multiple turns.
Use logs alongside testing
Open the Logs panel while testing to see
console.log output from your bot code in real time. See Execution logs for details.Programmatic testing with the Code Agent
If you’re working with the Code Agent to build or modify your bot, you can ask it to run a simulated test. The agent sends a message to your bot programmatically and observes the response — without you needing to pick up your phone. To trigger a programmatic test, describe the scenario you want to test in the chat. For example:“Test what happens when a user sends ‘hello’ as their first message.”The agent will run the test, show you the result, and can iterate on your code based on what it finds.
