예제 #1
0
        static void Main(string[] args)
        {
            using (Runner runner = new RunnerBuilder(DevToken).AsIOS(DeviceUDID, DeviceName, BundleId).Build())
            {
                runner.Run(new BasicTest());
                runner.Run(new ExtendedTest(), true);

                /**
                 * Load proxy assembly into memory to allow SDK finding it's classes
                 * This is only required when running the action proxy in Debug mode via IDE
                 * This not not needed when running from TestProject platform
                 */
                Assembly.LoadFrom("AddonProxy.dll");
                runner.Run(new ProxyTest(), true);
            }
        }
 public static StepExecutionResult RunJohnlewispurchaseflow()
 {
     using (var runner = new RunnerBuilder(DevToken).AsWeb(Browser).Build())
         return(runner.Run(new Johnlewispurchaseflow(), true));
 }