{"id":17918044,"url":"https://github.com/bogdanp/marionette","last_synced_at":"2026-02-17T11:03:10.102Z","repository":{"id":34928451,"uuid":"190891830","full_name":"Bogdanp/marionette","owner":"Bogdanp","description":"A Racket library that lets you control Firefox via the Marionette Protocol.","archived":false,"fork":false,"pushed_at":"2025-05-29T06:40:20.000Z","size":129,"stargazers_count":75,"open_issues_count":0,"forks_count":7,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-29T07:43:44.086Z","etag":null,"topics":["firefox","racket","webdriver"],"latest_commit_sha":null,"homepage":"https://docs.racket-lang.org/marionette/index.html","language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bogdanp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"Bogdanp"}},"created_at":"2019-06-08T13:36:10.000Z","updated_at":"2025-05-29T06:40:22.000Z","dependencies_parsed_at":"2024-05-12T13:29:16.811Z","dependency_job_id":"41d9a123-52fa-48e6-96a1-a9f2f9cbbdeb","html_url":"https://github.com/Bogdanp/marionette","commit_stats":{"total_commits":86,"total_committers":4,"mean_commits":21.5,"dds":"0.046511627906976716","last_synced_commit":"c4a42965205c91a273259353a7f9fd6d4def1107"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/Bogdanp/marionette","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bogdanp%2Fmarionette","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bogdanp%2Fmarionette/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bogdanp%2Fmarionette/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bogdanp%2Fmarionette/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bogdanp","download_url":"https://codeload.github.com/Bogdanp/marionette/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bogdanp%2Fmarionette/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278931706,"owners_count":26070801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["firefox","racket","webdriver"],"created_at":"2024-10-28T20:09:33.489Z","updated_at":"2025-10-08T11:17:19.440Z","avatar_url":"https://github.com/Bogdanp.png","language":"Racket","funding_links":["https://github.com/sponsors/Bogdanp"],"categories":[],"sub_categories":[],"readme":"# marionette\n\n[![.github/workflows/push.yml](https://github.com/Bogdanp/marionette/actions/workflows/push.yml/badge.svg)](https://github.com/Bogdanp/marionette/actions/workflows/push.yml)\n\nA Racket library that lets you control Firefox via the [Marionette\nProtocol].\n\n## Quickstart\n\nInstall marionette:\n\n    $ raco pkg install marionette\n\nRun `Firefox` with the `-marionette` flag:\n\n    $ /path/to/firefox -headless -marionette -safe-mode\n\nRun this script:\n\n``` racket\n#lang racket\n\n(require marionette)\n\n(call-with-browser!\n  (lambda (b)\n    (call-with-page! b\n      (lambda (p)\n        (page-goto! p \"https://racket-lang.org\")\n        (call-with-page-screenshot! p\n          (lambda (data)\n            (define filename (make-temporary-file \"~a.png\"))\n            (with-output-to-file filename\n              #:exists 'truncate/replace\n              (lambda ()\n                (write-bytes data)))\n\n            (system* (find-executable-path \"open\") filename)))))))\n```\n\n## Tips\n\nTo run a headless, marionette-enabled Firefox while you've got another\ninstance of the browser open, add the `-no-remote` flag:\n\n    $ /path/to/firefox -no-remote -headless -marionette -safe-mode\n\nIt's advisable that you use a separate profile as well:\n\n    $ /path/to/firefox -P marionette -no-remote -headless -marionette -safe-mode\n\nYou can create new profiles by visiting `about:profiles` in the\nbrowser.\n\n[Marionette Protocol]: https://firefox-source-docs.mozilla.org/testing/marionette/marionette/Protocol.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbogdanp%2Fmarionette","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbogdanp%2Fmarionette","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbogdanp%2Fmarionette/lists"}