{"id":16015956,"url":"https://github.com/d-biehl/robotframework-libraryproxy","last_synced_at":"2026-02-08T15:01:22.610Z","repository":{"id":251342921,"uuid":"570306527","full_name":"d-biehl/robotframework-libraryproxy","owner":"d-biehl","description":"Call RobotFramework keywords from Python","archived":false,"fork":false,"pushed_at":"2024-08-02T10:24:04.000Z","size":382,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-18T02:08:16.679Z","etag":null,"topics":["robotframework"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/d-biehl.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":["d-biehl"],"custom":["https://www.buymeacoffee.com/dbiehl","https://paypal.me/dbiehl74"]}},"created_at":"2022-11-24T21:16:50.000Z","updated_at":"2024-08-22T21:33:27.000Z","dependencies_parsed_at":"2024-08-02T11:20:37.435Z","dependency_job_id":null,"html_url":"https://github.com/d-biehl/robotframework-libraryproxy","commit_stats":null,"previous_names":["d-biehl/robotframework-libraryproxy"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/d-biehl/robotframework-libraryproxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-biehl%2Frobotframework-libraryproxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-biehl%2Frobotframework-libraryproxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-biehl%2Frobotframework-libraryproxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-biehl%2Frobotframework-libraryproxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d-biehl","download_url":"https://codeload.github.com/d-biehl/robotframework-libraryproxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-biehl%2Frobotframework-libraryproxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29234154,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T14:18:14.570Z","status":"ssl_error","status_checked_at":"2026-02-08T14:18:14.071Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["robotframework"],"created_at":"2024-10-08T15:44:11.990Z","updated_at":"2026-02-08T15:01:22.593Z","avatar_url":"https://github.com/d-biehl.png","language":"Python","funding_links":["https://github.com/sponsors/d-biehl","https://www.buymeacoffee.com/dbiehl","https://paypal.me/dbiehl74"],"categories":[],"sub_categories":[],"readme":"# robotframework-libraryproxy\n\nSimple library for calling RobotFramework keywords from Python, with the possibility to log them in the output.\n\nExample Python library:\n\n```python\nfrom Browser import Browser\nfrom robotlibraryproxy import library_proxy\n\ndef do_something_in_browser(self):\n    with library_proxy(Browser) as browser:\n        browser.new_browser(headless=False)\n        browser.new_page(\"https://example.com\")\n        browser.click(\"text=More Information...\")\n\n```\n\nor another way as python descriptor:\n\n```python\nfrom Browser import Browser\nfrom robotlibraryproxy import library_proxy\n\n\nclass Dummy:\n\n    browser: Browser = library_proxy()\n\n    def do_something_in_browser(self):\n        self.browser.new_browser(headless=False)\n        self.browser.new_page(\"https://example.com\")\n        self.browser.click(\"text=More Information...\")\n\n```\n\nExample Test case that uses this library:\n\n```robotframework\n*** Settings ***\n\nLibrary    Dummy.py\n\n# Library    Browser\n\n*** Test Cases ***\n\na simple test\n    Do Something In Browser\n\n```\n\nAn excerpt from the Robot log:\n\n\n![Example from robot log](doc/example_screenshot.png)\n\nmore comming soon...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-biehl%2Frobotframework-libraryproxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd-biehl%2Frobotframework-libraryproxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-biehl%2Frobotframework-libraryproxy/lists"}