CheshireCaat / BASRemote.NET

.NET library, which allows you to automate Google Chrome browser.
MIT License
24 stars 12 forks source link
automation bas bas-client bas-remote bas-remote-client bas-remote-control bot bot-framework browser browserautomationstudio cef chromium desktop grabber ide imacros macros poster visual-programming-language windows

BASRemote.NET

NuGet version Build status GitHub issues License: MIT

BASRemote - .NET library, which allows you to automate Google Chrome browser.

In order to make it possible, BrowserAutomationStudio application is used. BASRemote allows you to call and control execution of functions created in BAS. Consider following example, you have a BAS function, which executes specified Google search query and returns result as a list of urls. Using this library, you can call that function in any C# application and obtain result. You can distribute applications written with BASRemote library as well.

BrowserAutomationStudio

BAS - is application that allows you to automate any activities in Google Chrome browser with a help of visual programming and without knowing of any programming language. You can think of it as IDE created especially for browser automation:

Check following link for more info:

https://bablosoft.com/shop/BrowserAutomationStudio

Installation

Install package via NuGet:

> Install-Package BASRemote

Build from source

  1. Clone this repo to your PC.
  2. Compile source with VS2019 or Rider.
  3. Add reference to BASRemote.dll to your project.

Quick start

Following code will search for cats query in Google and output result into console. You can just copy paste this code and run it.

//Set script name, and optionally auth details (login, password)
var ScriptOptions = new BASRemote.Options
{
    ScriptName = "TestRemoteControl" /* or "YourScriptName" */
};

//Create client
using (var ScriptClient = new BASRemote.BasRemoteClient(ScriptOptions))
{
    //Start application, this may take some time
    await ScriptClient.Start();

    //Set parameters for function
    var ScriptParams = new BASRemote.Objects.Params
    {
            ["Query"] = "cats"
    };

    //Run function and wait for result
    //Following function will return list of strings
    var Result = await ScriptClient.RunFunction(
        "GoogleSearch", /* or "YourFunctionName" */
        ScriptParams
    ).GetTask<string[]>();

    //Iterate and output results
    foreach(var Link in Result)
    {
            Console.WriteLine(Link);
    }

}

Checkout wiki for more examples.

Running custom code

Previous example used TestRemoteControl project and GoogleSearch function defined in it. In most cases you want to use your own projects and functions. In order to do it:

After project with function is prepared, you can use it from C#. In order to do that, change script and function name in example above.

How it works

Following diagram will explain project architecture:

Running custom code section explains how to prepare your project and upload it into the cloud. Portable BAS instance is downloaded and started automatically, it is also closed automatically when BASRemote gets disposed. Folder, where portable BAS instance is located by default is data folder relative to executable. It can be customized by using BASRemote.Options.WorkingDirectory setting.

Project example

You can use TestRemoteControl project in order to test BASRemote.NET library. It is already uploaded into the cloud and can be used without authentication. List of available functions:

Project source code can be downloaded here

Dependencies

This library has dependencies on several excellent libraries:

Newtonsoft.Json

WebSocketSharp

License

BASRemote.NET has MIT license.

You can distribute applications using BASRemote.NET library, including commercial, to user, who don't have BAS premium subscription without any fees.

In order to create project with custom functions you need to have a BAS premium subscription.

In other words, only developers must have BAS premium subscription, not users.