L2B Partner App

Vendor App — Automation Testing

L2B Vendor is the partner app where vendors receive rental and material orders from customers, fulfil those jobs, and manage machines, bookings, fleet, team, and earnings in one place.

Next up: Sign up — module-by-module edge cases, in first-launch order.

4 / 72
Screens automated
5.6%
Coverage
34
Passed in latest run
0
Failed in latest run (0 skipped)
5
Open bugs found so far

Open bugs: 5 — logged for developers. View the list or download the Word file.

Modules

Splash

Done

8/8 cases

Language

Done

10/10 cases

Onboarding

Done

11/11 cases

Sign up

In progress

Cases not counted yet

OTP

In progress

Cases not counted yet

Home

Pending

Cases not counted yet

Bookings

Pending

Cases not counted yet

Fleet

Pending

Cases not counted yet

Calendar

Pending

Cases not counted yet

Earning

Pending

Cases not counted yet

Team

Pending

Cases not counted yet

Profile / Settings

Pending

Cases not counted yet

Help

Pending

Cases not counted yet

App flow

Green is done. Amber is in progress. Grey is not started. After a valid OTP the app lands on Home.

flowchart TB
  subgraph launch["First launch"]
    direction TB
    splash(["Splash"])
    language(["Language"])
    splash --> language
    onboarding(["Onboarding"])
    language --> onboarding
    signup(["Sign up"])
    onboarding --> signup
    otp(["OTP"])
    signup --> otp
  end
  subgraph loggedin["After login — not started"]
    direction TB
    home(["Home"])
    bookings(["Bookings"])
    home --> bookings
    fleet(["Fleet"])
    home --> fleet
    calendar(["Calendar"])
    home --> calendar
    earning(["Earning"])
    home --> earning
    settings(["Profile / Settings"])
    home --> settings
    help(["Help"])
    home --> help
    team(["Team"])
    settings --> team
  end
  otp -.->|valid OTP, not automated| home
  class splash,language,onboarding done
  class signup,otp progress
  class home,bookings,fleet,calendar,earning,team,settings,help pending
  classDef done fill:#E8F5E9,stroke:#2E7D32,color:#145218,stroke-width:2px
  classDef progress fill:#FFF6E5,stroke:#D4970A,color:#7A5200,stroke-width:2px
  classDef pending fill:#F4F4F4,stroke:#8D8D8D,color:#3D3D3D,stroke-width:2px
      
Done In progress Pending