SSC – generic core for speeding up your own Salesforce test automation framework development with Selenide under the hood.
Map<String, String> account = new HashMap<>() {{
put("Account Name", "Erica's account");
put("Parent Account", "Erica Larson");
put("Type", "Prospect");
...
}};
listView
.open("Account")
.clickNew()
.enterData(account)
.save()
.waitTillModalClosed()
.waitTillOpened();
detailsPage
.clickTab("Details")
.validate(account);
If you are about to contribute, please, study our release strategy first. It is planned to cover much more Salesforce functionalities in the upcoming future, we would be thankful for your ideas on SSC improvement.
SSC is an open-source project, and distributed under the Apache-2.0 license.