4 thoughts on “Visual Studio 2015 with SikuliSharp”

  1. Hello, I’ve VS2015, and Sikuli 1.1.0. My scripts run fine with Sikuli IDE, but no way to maje it work with VS2015 and Sikuli Sharp. Is it OK with Sikuli 1.10 ?
    Thanks

    Like

  2. You may need to use a runtime jython console command like below.

    using(var runtime = Sikuli.CreateRuntime())
    {
    runtime.Start();

    var result = runtime.Run(
    @”print “”RESULT: OK”” if doubleClick(“”C:\\Patterns\\MyPattern.png””) else “”RESULT: FAIL”””,
    “RESULT:”,
    0d
    );

    Assert.That(result, Is.StringContaining(“RESULT: OK”));
    }

    You can also contact the owner at
    https://github.com/christianrondeau/SikuliSharp for more info.

    Like

Leave a comment