Can You Use ChatGPT During Online Coding Assessments?
You technically can — but how you do it decides whether you pass or get flagged. The naive approaches (alt-tab, copy-paste) trigger exactly the signals assessment platforms are built to catch. Here's what gets caught and what doesn't.
The three ways people get caught
- Alt-tabbing to ChatGPT. Every assessment platform logs focus loss. Switching to another tab or window is the single most-logged event, and it's timestamped for the recruiter.
- Copy-pasting the answer. Paste detection flags large blocks dropped into the editor, and many platforms show the reviewer the pasted content and the empty keystroke history before it.
- Perfect, instant, textbook code. Similarity and plagiarism checks compare your solution against common reference implementations. A verbatim standard answer stands out.
What assessment platforms can and can't see
Almost all coding assessments (HackerRank, CodeSignal, Codility, TestGorilla) run in the browser. They can see: tab focus, paste events, the keystroke timeline, time per question, and — if enabled — your webcam. They cannot see: native desktop apps that never take focus, your screen outside the browser tab, or hardware keystrokes (which look identical to typing).
The approach that stays undetected
Avoiding detection comes down to not triggering those three signals:
- Never switch focus. Keep the AI on top of the test in an overlay rather than in a separate tab, so no focus-loss is logged.
- Type, don't paste. Enter the solution with hardware keystrokes at a human pace so there's no paste event and the keystroke timeline looks natural.
- Adapt the solution. Ask the AI to vary naming and structure so it doesn't match a textbook reference the similarity check knows.
An AI copilot built for exactly this
UFOlee keeps ChatGPT, Claude or Gemini in an overlay above your assessment (no tab switch), screenshots the question with one hotkey, and auto-types the solution with hardware keystrokes (no paste). Free to try.
See UFOlee for coding assessmentsFAQ
Can coding assessment platforms detect ChatGPT?
They can't detect ChatGPT directly. They detect the behaviours around using it: tab switching to reach it and pasting its output. Avoid those two signals and there's nothing platform-side that identifies AI use.
Is copy-pasting from ChatGPT detectable?
Often, yes. Paste detection flags large blocks and the reviewer can see an empty typing history before a sudden full solution. Typing the answer instead avoids this.
Do employers see if I switched tabs during a test?
Yes. Tab switches and focus loss are logged and shown on the assessment report, though the platform doesn't see which site you switched to.