How to run a fake door test
Aug 17, 2023
A fake door test is when you create a "fake" UI or experience for a product or feature you are thinking of building. When users interact with it, you tell them it isn't available (yet). This enables you determine if your users would actually be interested in your new feature.
This tutorial shows you how to set up a fake door test with PostHog. We'll build a basic app, set up a fake door test, and then implement surveys to get more feedback.
Note: Fake door tests have risks. Showing users something non-existent could disappoint them and hurt your reputation. Make sure to be honest and transparent with users about what you are doing.
Creating an app and adding PostHog
We are going to build a basic app to run our fake door test on. We do this with Next.js, which requires installing Node. After doing so, run the command below, select No for TypeScript, Yes for use app router
, and the defaults for every other option.
npx create-next-app@latest fake-door
After doing this, go into your newly created fake-door
folder and install posthog-js
.
cd fake-doornpm i posthog-js
After installing posthog-js
, set up the PostHog initialization. This requires going to our app
folder, creating a providers.js
file, adding our PostHog initialization behind a window check with opt_in_site_apps: true
(for later), and creating a provider component like this:
// app/providers.js'use client'import posthog from 'posthog-js'import { PostHogProvider } from 'posthog-js/react'import { useEffect } from 'react'export function PHProvider({ children }) {useEffect(() => {posthog.init('<ph_project_api_key>', {api_host: 'https://us.i.posthog.com',person_profiles: 'identified_only',opt_in_site_apps: true})}, []);return <PostHogProvider client={posthog}>{children}</PostHogProvider>}
With our PHProvider
component created, we can import it and wrap our main app in it in layout.js
.
// app/layout.jsimport './globals.css'import { PHProvider } from './providers'export default function RootLayout({ children }) {return (<html lang="en"><PHProvider><body>{children}</body></PHProvider></html>)}
With this done, PostHog starts autocapturing events and our app is ready for a fake door test.
Creating our fake door test
Our fake door test is simple. We'll add a button to our app that says "Try our new feature" and it takes you to a page that says "This feature is coming soon" which we will create later.
// app/page.jsimport Link from 'next/link'export default function Home() {return (<div><h1>Welcome to our app!</h1><button>Sign in</button><span> - </span><Link href="/new"><button>Try our the new feature</button></Link></div>)}
With just this set up, we can run the development server with the command npm run dev
, go to our app, and click the button a few times. This captures events in PostHog.
Once we capture that data in PostHog, we can set up an action for our fake door test. To do this:
- Go to the data management, click the action tab, and then click "New action."
- Select option to create "From event or pageview."
- Name your action "shown new feature interest."
- Select "Autocapture" as our "Match Group #1," and then match the element text "Try our new feature" exactly.
- Press save.
This tracks the number of button clicks, enabling you to track the success of your fake door test and interest in your feature.
Bonus idea: You can use feature flags to show your fake door test to a targeted subset of users. This lowers reputation risk and enables you to get more targeted feedback.
Adding a survey to our fake door test
Since the goal of a fake door test is to validate interest, we can get even more feedback by adding a survey.
We'll implement this in our example by navigating the user to a new page when they click the button and asking them a survey question.
To do this, create another folder named new
in our app
folder and a file named page.js
in this folder. In this file, we'll create a basic page with our survey question.
// app/new/page.jsexport default function New() {return (<div><h1>This feature is coming soon</h1><p>Let us know what you think by answering the survey below.</p></div>)}
Next, we can set up the survey we mention. To do this, go to the surveys tab in PostHog and click "New survey." Here you can fill out the details of your survey:
- Add a name like "New feature."
- Add a question like "What are you looking for in this new feature?"
- Add a target on URLs containing
/new
. - Click "Save as draft."
Because we set opt_in_site_apps: true
in our PostHog initialization earlier, all we need to do is enable the survey site app. Either click the link on your draft survey page or go to the apps tab and search for "Surveys app," enable it, and press save.
Don’t want a popover? You can learn how to implement an integrated, custom survey component in our "How to create custom surveys" tutorial.
Once done, we can go back to our draft survey and press "Launch." Now, users who visit the /new
page get a survey so we can get further validation on our fake door test. PostHog saves survey responses which you can use to guide your feature development.
Further reading
- The Product-Market Fit Game
- Get feedback and book user interviews with surveys
- How we build features users love (really fast)