Your first fetch
Load a page
obscura fetch https://example.comRun JavaScript with --eval
obscura fetch https://example.com --eval "document.title""Example Domain"obscura fetch https://news.ycombinator.com \
--eval "Array.from(document.querySelectorAll('.titleline a')).slice(0, 5).map(a => a.textContent)"Multi-statement eval
obscura fetch https://example.com --eval "(function(){
const links = document.querySelectorAll('a');
return Array.from(links).map(a => a.href);
})()"Wait for the right moment
Level
Returns when
Common flags
Last updated
Was this helpful?

