Summary
engine: "logically" (and Logically in research mode) does not produce answers. Reproduced twice:
[logically] stage: nav (+4757ms)
[logically] stage: new-chat (+7577ms)
[logically] stage: input-wait (+8544ms)
[logically] stage: type-and-submit (+8816ms)
[logically] stage: answer-wait (+12835ms)
{"_envelope":{"engine":"logically","mode":"headless","inputReady":true,"durationMs":112855,"lastStage":"answer-wait",...},"error":"cdp timeout: eval"}
What happens
The query is typed and submitted fine (inputReady: true, not verification-blocked), but the in-browser answer-wait eval never resolves within the CDP eval budget (~113s total until runExtractor's 120s kill). The answer either never renders in the DOM or the polling selector no longer matches the current Logically UI.
Via the tool: greedy_search({query: "...", engine: "logically"}) → Search failed: Aborted.
Repro
node extractors/logically.mjs "climate change impacts europe"
Notes
- Runs under headless mode, no captcha/verification signals (
verificationResult: null, blockedBy: null).
- Possible causes: stale answer selector in
extractors/logically.mjs, answer rendered inside an iframe/shadow root not matched by the eval, or the page requiring a visible-mode render.
Summary
engine: "logically"(and Logically in research mode) does not produce answers. Reproduced twice:What happens
The query is typed and submitted fine (
inputReady: true, not verification-blocked), but the in-browser answer-wait eval never resolves within the CDP eval budget (~113s total untilrunExtractor's 120s kill). The answer either never renders in the DOM or the polling selector no longer matches the current Logically UI.Via the tool:
greedy_search({query: "...", engine: "logically"})→Search failed: Aborted.Repro
node extractors/logically.mjs "climate change impacts europe"Notes
verificationResult: null,blockedBy: null).extractors/logically.mjs, answer rendered inside an iframe/shadow root not matched by the eval, or the page requiring a visible-mode render.