{"id":20065721,"url":"https://github.com/inflectra/rapise-sfdc","last_synced_at":"2026-05-12T14:39:45.199Z","repository":{"id":98238472,"uuid":"242717429","full_name":"Inflectra/rapise-sfdc","owner":"Inflectra","description":"Framework for testing Salesforce applications","archived":false,"fork":false,"pushed_at":"2024-09-18T15:09:57.000Z","size":413,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-03-05T07:37:07.574Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/Inflectra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2020-02-24T11:22:29.000Z","updated_at":"2024-09-18T15:10:02.000Z","dependencies_parsed_at":"2024-09-18T16:12:45.124Z","dependency_job_id":null,"html_url":"https://github.com/Inflectra/rapise-sfdc","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Inflectra/rapise-sfdc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inflectra%2Frapise-sfdc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inflectra%2Frapise-sfdc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inflectra%2Frapise-sfdc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inflectra%2Frapise-sfdc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Inflectra","download_url":"https://codeload.github.com/Inflectra/rapise-sfdc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inflectra%2Frapise-sfdc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32944273,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T09:19:52.626Z","status":"ssl_error","status_checked_at":"2026-05-12T09:17:33.438Z","response_time":102,"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":[],"created_at":"2024-11-13T13:52:27.312Z","updated_at":"2026-05-12T14:39:45.166Z","avatar_url":"https://github.com/Inflectra.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\n\nFramework for testing Salesforce applications\n\n- Reusable actions are defined in `Sfdc` module.\n- Data for each test case is defined in `Data.xlsx`.\n- `Dropdowns.xlsx` contains lists of values for [RVL dropdowns](https://rapisedoc.inflectra.com/Guide/rvl_editor/#param-dropdowns).\n- `Output.xlsx` is used to persist data between test executions (see SetOutputValue, GetOutputValue common functions below).\n \nThe way of test parameterization and reading data from an Excel spreadsheet is described in the docs:\n\n[Data-Driven Testing](https://rapisedoc.inflectra.com/Guide/ddt/)\n\n## Browser Profiles\n\nThe framework includes a local Chrome [browser profile](https://rapisedoc.inflectra.com/Guide/browser_settings/#local-browser-profiles) located in `Profiles\\SeleniumProfiles` folder. This profile is configured to launch Chrome with the same user data profile to deal with MFA in Salesforce. It launches Chrome with these arguments:\n\n```javascript\n[\"disable-notifications\", \"user-data-dir=C:\\\\ProgramData\\\\Inflectra\\\\Rapise\\\\Temp\\\\Chrome\"]\n```\n\n## Common Actions\n\nAll actions are defined in `Sfdc` module and implemented in `Sfdc.js`. Look into this file for details.\n\n![Global Object](Media/Sfdc.png)\n\n### Sfdc.Launch\n\nLaunches Salesforce in a browser. SfdcUrl, UserName, Password must be set in Config.xlsx\n\n![SfdcLaunch RVL](Media/SfdcLaunch.png)\n\n### Sfdc.OpenApp\n\nOpens application.\n\n![SfdcOpenApp RVL](Media/SfdcOpenApp.png)\n\n![OpenApp](Media/OpenApp.png)\n\n### Sfdc.NavigateModule\n\nNavigates to module using nav bar.\n\n![SfdcNavigateModule RVL](Media/SfdcNavigateModule.png)\n\n![NavigateModule](Media/NavigateModule.png)\n\n### Sfdc.SelectListView\n\nSelects list view.\n\n![SfdcSelectListView RVL](Media/SfdcSelectListView.png)\n\n![SelectListView](Media/SelectListView.png)\n\n### Sfdc.SearchTable\n\nSearches data in a table.\n\n![SfdcSearchTable RVL](Media/SfdcSearchTable.png)\n\n![SearchTable](Media/SearchTable.png)\n\n### Sfdc.SelectComboboxItem\n\nSelects item from a combobox.\n\n![SfdcSelectComboboxItem RVL](Media/SfdcSelectComboboxItem.png)\n\n![SelectComboboxItem](Media/SelectComboboxItem.png)\n\n### SetOutputValue\n\nWrites key/value pair to Output.xlsx\n\n![SetOutputValue RVL](Media/SetOutputValue.png)\n\n### GetOutputValue\n\nReads value from Output.xlsx\n\n![GetOutputValue RVL](Media/GetOutputValue.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finflectra%2Frapise-sfdc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finflectra%2Frapise-sfdc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finflectra%2Frapise-sfdc/lists"}