Skip to content

Simple usage

MCarterSitemorse edited this page Jan 3, 2018 · 1 revision

The SCI Client code provides an easy way to test a page content by first instantiating the SCIClient class, then making a simple call to a method with a URL. For example:

String previewURL = http://localhost/index.html;
SCIClient client = new SCIClient(licenceKey);
String SmartViewURL = client.performTest(previewURL);

In this example, the previewURL is a link to a locally rendered HTML view of the content being tested. Most CMS applications already provide this to allow a content manager to view the content as it will appear when published to the live site.

Clone this wiki locally