[Atomic Glue](atomicglue.co)
CRO
Home › Glossary › Cro· 179 ·

Friction

/ˈfrɪkʃən/noun
Filed underCroUX
In brief · quick answer

Friction is anything that slows down, confuses, or discourages a user from completing a desired action. It is the opposite of a smooth conversion flow. Every element of friction is a conversion leak. The CRO practitioner's job is to find friction and eliminate it.

§ 1 Definition

Friction in CRO refers to any element of the user experience that creates resistance to conversion. It is the gap between what the user wants to do and how easily they can do it. Friction can be visual (cluttered layouts, hard-to-read text), cognitive (confusing choices, unclear instructions), technical (slow load times, broken forms, poor mobile responsiveness), or psychological (lack of trust, security concerns, anxiety about commitment). The friction principle of CRO: every unit of friction you remove increases conversion. Every unit you add reduces it.

§ 2 Types of Friction

Four categories of friction: (1) Navigational friction: the user cannot find what they are looking for. Too many menu items, unclear labels, missing search. (2) Cognitive friction: the user has to think too hard. Complex forms, jargon, unclear value propositions, too many choices. (3) Performance friction: the page loads slowly, animations lag, buttons are unresponsive. (4) Trust friction: the user does not feel safe. Missing security badges, unclear return policy, no contact information, sketchy design. Each type requires a different optimization approach.

§ 3 The Friction Audit

A friction audit is a systematic review of every step in the conversion flow. For each step, ask: (1) How many clicks does this require? (2) How many choices does the user have to make? (3) How much information do they need to process? (4) How long does this step take to load? (5) What trust concerns might arise at this point? (6) What happens if the user makes a mistake? The answers reveal the friction points. Prioritize the friction points that affect the most users at the most critical steps.

§ 4 The Friction Fallacy

Not all friction is bad. Some friction is desirable. A confirmation step before a major purchase prevents regret. A CAPTCHA prevents bots. A multi-step checkout for a high-value item feels more secure than a one-click order. The distinction is between 'bad friction' (unnecessary obstacles that serve no one) and 'good friction' (intentional safeguards that build trust or prevent errors). The CRO practitioner's job is to eliminate bad friction and preserve good friction.

§ 5 Note

The most expensive friction is the friction you do not know you have. Session recordings are the single best tool for discovering unknown friction. Watch 10 recordings of users going through your checkout flow. You will find at least 3 friction points you did not know existed. Fix them. Watch 10 more. Repeat.

§ 6 In code

<!-- Before: High-friction form with no labels, small fields, confusing layout -->
<!-- After: Low-friction form with clear labels, large fields, single column -->
<form class="low-friction-form">
  <div class="form-group">
    <label for="email">Email address</label>
    <input type="email" id="email"
           placeholder="[email protected]"
           autocomplete="email"
           inputmode="email"
           required>
  </div>
  <div class="form-group">
    <label for="password">Create a password</label>
    <input type="password" id="password"
           placeholder="At least 8 characters"
           autocomplete="new-password"
           minlength="8"
           required>
    <span class="hint">Must be at least 8 characters</span>
  </div>
  <button type="submit" class="cta-button">Create Account</button>
  <p class="legal">
    By signing up, you agree to our
    <a href="/terms">Terms of Service</a>.
  </p>
</form>

§ 7 Common questions

Q. How do I measure friction?
A. Quantitative: task completion rate, time on task, error rate, abandonment rate. Qualitative: session recordings, user testing, surveys, customer support tickets. The combination reveals both the existence and the cause of friction.
Q. What is the most common source of friction?
A. Forced account creation. It is the single most tested and most consistently confirmed friction point. Guest checkout should be the default. Account creation should be optional or post-purchase.
Q. Can friction be good?
A. Yes. 'Good friction' includes confirmation dialogs, security checks, and educational steps that reduce errors or build trust. The test: does this friction serve the user or the company? If it serves the user, keep it. If it serves the company at the user's expense, eliminate it.
Key takeaways
  • Friction is anything that slows, confuses, or discourages the user from converting
  • Four types: navigational, cognitive, performance, and trust friction
  • A friction audit systematically reviews every step of the conversion flow
  • Not all friction is bad. Preserve good friction that prevents errors and builds trust
  • Session recordings are the best tool for discovering unknown friction
How Atomic Glue helps

Atomic Glue conducts friction audits that identify every obstacle between your users and their goals. We find the friction you do not know you have and eliminate it. Conversion Optimization services

Get in touch
# Friction

Friction is anything that slows down, confuses, or discourages a user from completing a desired action. It is the opposite of a smooth conversion flow. Every element of friction is a conversion leak. The CRO practitioner's job is to find friction and eliminate it.

Category: Cro (also: UX)

Author: Atomic Glue Research Team

## Definition

Friction in CRO refers to any element of the user experience that creates resistance to conversion. It is the gap between what the user wants to do and how easily they can do it. Friction can be visual (cluttered layouts, hard-to-read text), cognitive (confusing choices, unclear instructions), technical (slow load times, broken forms, poor mobile responsiveness), or psychological (lack of trust, security concerns, anxiety about commitment). The friction principle of CRO: every unit of friction you remove increases conversion. Every unit you add reduces it.

## Types of Friction

Four categories of friction: (1) Navigational friction: the user cannot find what they are looking for. Too many menu items, unclear labels, missing search. (2) Cognitive friction: the user has to think too hard. Complex forms, jargon, unclear value propositions, too many choices. (3) Performance friction: the page loads slowly, animations lag, buttons are unresponsive. (4) Trust friction: the user does not feel safe. Missing security badges, unclear return policy, no contact information, sketchy design. Each type requires a different optimization approach.

## The Friction Audit

A friction audit is a systematic review of every step in the conversion flow. For each step, ask: (1) How many clicks does this require? (2) How many choices does the user have to make? (3) How much information do they need to process? (4) How long does this step take to load? (5) What trust concerns might arise at this point? (6) What happens if the user makes a mistake? The answers reveal the friction points. Prioritize the friction points that affect the most users at the most critical steps.

## The Friction Fallacy

Not all friction is bad. Some friction is desirable. A confirmation step before a major purchase prevents regret. A CAPTCHA prevents bots. A multi-step checkout for a high-value item feels more secure than a one-click order. The distinction is between 'bad friction' (unnecessary obstacles that serve no one) and 'good friction' (intentional safeguards that build trust or prevent errors). The CRO practitioner's job is to eliminate bad friction and preserve good friction.

## Note

The most expensive friction is the friction you do not know you have. Session recordings are the single best tool for discovering unknown friction. Watch 10 recordings of users going through your checkout flow. You will find at least 3 friction points you did not know existed. Fix them. Watch 10 more. Repeat.

## In code

<!-- Before: High-friction form with no labels, small fields, confusing layout -->
<!-- After: Low-friction form with clear labels, large fields, single column -->
<form class="low-friction-form">
  <div class="form-group">
    <label for="email">Email address</label>
    <input type="email" id="email"
           placeholder="[email protected]"
           autocomplete="email"
           inputmode="email"
           required>
  </div>
  <div class="form-group">
    <label for="password">Create a password</label>
    <input type="password" id="password"
           placeholder="At least 8 characters"
           autocomplete="new-password"
           minlength="8"
           required>
    <span class="hint">Must be at least 8 characters</span>
  </div>
  <button type="submit" class="cta-button">Create Account</button>
  <p class="legal">
    By signing up, you agree to our
    <a href="/terms">Terms of Service</a>.
  </p>
</form>

## Common questions

Q: How do I measure friction?

A: Quantitative: task completion rate, time on task, error rate, abandonment rate. Qualitative: session recordings, user testing, surveys, customer support tickets. The combination reveals both the existence and the cause of friction.

Q: What is the most common source of friction?

A: Forced account creation. It is the single most tested and most consistently confirmed friction point. Guest checkout should be the default. Account creation should be optional or post-purchase.

Q: Can friction be good?

A: Yes. 'Good friction' includes confirmation dialogs, security checks, and educational steps that reduce errors or build trust. The test: does this friction serve the user or the company? If it serves the user, keep it. If it serves the company at the user's expense, eliminate it.

## Key takeaways

## Related entries


Last updated July 2026. Permalink: atomicglue.co/glossary/friction

Schedule a call

30 min · Video call

1
Date
2
Time
3
Details