-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZPTest.cs
36 lines (31 loc) · 1.04 KB
/
ZPTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Resources;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Global.Threads;
using Global.ZennoExtensions;
using ZennoLab.CommandCenter;
using ZennoLab.CommandCenter.TouchEvents;
using ZennoLab.InterfacesLibrary.Enums.Browser;
using ZennoLab.InterfacesLibrary.Enums.Http;
using ZennoLab.InterfacesLibrary.ProjectModel;
namespace ZPTest
{
public class Main : IZennoCustomCode, IZennoCustomEndCode
{
public int ExecuteCode(Instance instance, IZennoPosterProjectModel project)
{
var helper = new ZPHelper.ZPHelper(project, instance, BrowserType.Firefox45, true);
helper.Browser.OpenSite("https://github.com/ZennoHelpers/ZPHelper");
return 0;
}
public void GoodEnd(Instance instance, IZennoPosterProjectModel project) { }
public void BadEnd(Instance instance, IZennoPosterProjectModel project) { }
}
}