1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "targetActorId": "ryanclinton/website-contact-scraper",
12 "testCases": [
13 {
14 "name": "Contact scraper smoke test",
15 "input": {
16 "urls": [
17 "https://example.com"
18 ]
19 },
20 "assertions": {
21 "minResults": 1,
22 "requiredFields": [
23 "email",
24 "domain"
25 ],
26 "fieldPatterns": {
27 "email": "^[^@\\s]+@[^@\\s]+\\.[^@\\s]+$"
28 },
29 "maxDuration": 120
30 }
31 }
32 ]
33};
34
35
36const run = await client.actor("ryanclinton/actor-test-runner").call(input);
37
38
39console.log('Results from dataset');
40console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
41const { items } = await client.dataset(run.defaultDatasetId).listItems();
42items.forEach((item) => {
43 console.dir(item);
44});
45
46