How-to guides
Short, simple steps. No experience needed — just follow along top to bottom.
Pick a guide
1. Install L3git 2. Turn on your license (paste your key) 3. Record your first test (click through a website) 4. Make an API test 5. Where your test code goes & how to run it 6. Turn on the AI helper (your own key) 7. Move L3git to another computer 8. Get the latest version 9. Send results to Slack, Allure, TestRail & Xray 10. Test WebSocket, Kafka & gRPC1. Install L3git
Get the app onto your Windows PC.
- Download the L3git file from your email (or from l3dev.com).
- If it is a .zip file: right-click it and choose Extract All. This makes a normal folder.
- Open that folder. Find the file named L3git.exe.
- Double-click L3git.exe. The app opens.
Done! You do not need Python, Node, or anything else to run the app.
2. Turn on your license
This unlocks the app with the key you bought. You only do this once per computer.
- Open L3git.
- Click the Activation tab near the top.
- Find your license key in your purchase email. Copy it.
- Paste the key into the box.
- Click Activate.
- Close L3git and open it again.
Done! The app is now yours to use.
3. Record your first test
L3git watches you click through a website, then writes the test code for you.
- Open L3git. On the first screen, type a name for your test (like Login test).
- Type the website address you want to test (like https://yoursite.com).
- Click Start. A web browser opens.
- Use the website like normal — click buttons, type in boxes, log in. L3git records every step.
- To check something, use the little L3git box on the page to add a check (for example, "this text should appear").
- When you are finished, click Generate (or Export).
Done! You just made an automated test without writing any code.
4. Make an API test
Test a web API (no browser). Great for backends.
- Open L3git and choose API editor.
- Click New project and give it a name.
- Add a request: pick a method (GET, POST, etc.) and type the address (like https://api.yoursite.com/users).
- Click Send to try it and see the response.
- Add a check (an assertion) — for example, "the status should be 200" or "the response should contain a name".
- Click Save, then Run to run your test.
Done!
5. Where your test code goes & how to run it
L3git makes a normal code project. You can run it right in the app, or in your own tools.
- When you Generate/Export, L3git saves a project folder on your PC (it tells you where).
- To run tests inside L3git: use the Run button on the run page.
- To run them anywhere else (like your team's CI): open the folder and run mvn test. This needs Java (JDK 17+) and Maven installed — the same as any Java project.
- The code is 100% yours. There are no per-run fees, ever.
6. Turn on the AI helper
Optional. Lets you describe a test in plain English and fix broken steps with one click. You bring your own AI key.
- Get an API key from Anthropic (their site). It looks like sk-ant-....
- In L3git, open Tools → Settings and integrations.
- Paste your key into the Anthropic API key box.
- Click Test key to check it, then Save key.
Done! AI buttons now appear while recording.
7. Move L3git to another computer
Each key allows a set number of machines. Free the old one first, then turn on the new one.
- On the old computer, open L3git → Activation tab.
- Click Deactivate this PC. This frees your seat.
- On the new computer, install L3git (Guide 1).
- Open it, go to Activation, paste your key, click Activate.
Done!
8. Get the latest version
L3git tells you when a new version is out. Updating keeps your key, settings, and files.
- When an update is ready, L3git shows "Update available" at the bottom of the start screen.
- Click it (or open the Help → About tab and click Check for updates).
- Click Download and install, then confirm.
- L3git closes, updates itself, and opens again automatically.
Done!
9. Send results to Slack, Allure, TestRail & Xray
After a test run, L3git can post the results to the tools your team already uses. All optional — turn on only the ones you want.
- Open your generated project folder. Find the file reporting.properties.example.
- Make a copy of it, and rename the copy to reporting.properties.
- Open reporting.properties in Notepad. Fill in only the lines for the tools you use — Slack/Teams (paste an "Incoming Webhook" URL), TestRail (address, login email, an API key, and a run number), or Xray (the import URL with your project key, and a token). Leave the rest as they are.
- Run your tests: type mvn test in the project folder.
- Then send the results: java -cp target/test-classes com.example.support.TestReporter
- Each tool you filled in gets the pass/fail summary. You'll see -> HTTP 200 (ok) next to each one that worked.
Done! Your results now land in Slack, TestRail, Xray, or a rich Allure report — see them proven live on our verification page.
10. Test WebSocket, Kafka & gRPC
L3git isn't just for websites and REST APIs — it can test real-time and streaming systems too.
- Open the L3git API editor.
- Click the Protocols... button.
- Pick the type — WebSocket, Kafka, or gRPC — and fill in the boxes it shows (for example, a gRPC call needs the server address, the method, and a short JSON request).
- Click OK. The step is added to your test.
- Click Generate to build the project, then run it with mvn test.
Done! L3git now tests your WebSocket, Kafka, or gRPC endpoints alongside your UI and REST tests — proven live here.
Still stuck? Email [email protected] — a real person replies.