{"id":25939039,"url":"https://github.com/remarkablemark/codeception-selenium-safari-demo","last_synced_at":"2026-04-13T05:46:21.362Z","repository":{"id":280528564,"uuid":"942307890","full_name":"remarkablemark/codeception-selenium-safari-demo","owner":"remarkablemark","description":"Codeception Selenium Safari demo","archived":false,"fork":false,"pushed_at":"2026-02-19T04:47:05.000Z","size":170,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-25T19:34:47.633Z","etag":null,"topics":["codeception","composer","demo","end-to-end-testing","npm","php","safari","selenium","selenium-webdriver","webdriver"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/remarkablemark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["remarkablemark"],"patreon":"remarkablemark","open_collective":null,"ko_fi":"remarkablemark","tidelift":null,"community_bridge":null,"liberapay":"remarkablemark","issuehunt":null,"otechie":null,"buy_me_a_coffee":"remarkablemark","thanks_dev":"u/gh/remarkablemark","custom":["https://b.remarkabl.org/teespring"]}},"created_at":"2025-03-03T22:48:02.000Z","updated_at":"2026-02-19T04:46:41.000Z","dependencies_parsed_at":"2025-03-03T23:39:03.414Z","dependency_job_id":null,"html_url":"https://github.com/remarkablemark/codeception-selenium-safari-demo","commit_stats":null,"previous_names":["remarkablemark/codeception-selenium-safari-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/remarkablemark/codeception-selenium-safari-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fcodeception-selenium-safari-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fcodeception-selenium-safari-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fcodeception-selenium-safari-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fcodeception-selenium-safari-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remarkablemark","download_url":"https://codeload.github.com/remarkablemark/codeception-selenium-safari-demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fcodeception-selenium-safari-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31741541,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T05:13:27.074Z","status":"ssl_error","status_checked_at":"2026-04-13T05:13:25.150Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["codeception","composer","demo","end-to-end-testing","npm","php","safari","selenium","selenium-webdriver","webdriver"],"created_at":"2025-03-04T04:15:29.538Z","updated_at":"2026-04-13T05:46:21.302Z","avatar_url":"https://github.com/remarkablemark.png","language":"PHP","funding_links":["https://github.com/sponsors/remarkablemark","https://patreon.com/remarkablemark","https://ko-fi.com/remarkablemark","https://liberapay.com/remarkablemark","https://buymeacoffee.com/remarkablemark","https://thanks.dev/u/gh/remarkablemark","https://b.remarkabl.org/teespring"],"categories":[],"sub_categories":[],"readme":"# Codeception Selenium Safari Demo\n\n[Codeception](https://codeception.com/) is installed for acceptance, functional, and unit testing:\n\n1. Edit `tests/Acceptance.suite.yml` to set url of your application. Change `PhpBrowser` to `WebDriver` to enable browser testing\n2. Edit `tests/Functional.suite.yml` to enable a framework module. Remove this file if you don't use a framework\n3. Create your first acceptance tests using `codecept g:cest Acceptance First`\n4. Write first test in `tests/Acceptance/FirstCest.php`\n5. Run tests using: `codecept run`\n\n## Prerequisites\n\n### PHP\n\n- Composer\n\n### Node.js\n\n- NPM\n\n### Safari\n\nYou must enable the `Allow Remote Automation` option in Safari's Develop menu to control Safari via WebDriver:\n\n1. Open Safari.\n2. Go to the `Safari` menu in the top left corner.\n3. Select `Settings...`.\n4. Navigate to the `Developer` tab.\n5. Check the checkbox next to `Allow remote automation`.\n\nSee [instructions](https://github.com/remarkablemark/codeception-selenium-safari-demo/wiki/Safari-WebDriver).\n\n## Install\n\nInstall the dependencies:\n\n```sh\ncomposer install\n```\n\n```sh\nnpm install\n```\n\n## Run\n\nLaunch [Selenium](https://www.npmjs.com/package/selenium-standalone):\n\n```sh\nnpm start # npx selenium-standalone install \u0026\u0026 npx selenium-standalone start\n```\n\nTests are executed with the `run` command:\n\n```sh\nphp vendor/bin/codecept run --steps\n```\n\nOr run the script:\n\n```sh\ncomposer test\n```\n\n## Resources\n\n- [Quickstart](https://codeception.com/quickstart)\n- [WebDriver](https://codeception.com/docs/modules/WebDriver)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Fcodeception-selenium-safari-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremarkablemark%2Fcodeception-selenium-safari-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Fcodeception-selenium-safari-demo/lists"}