// add other actions here
    // this starts the test for ONE browser
    public static void Start(string user, string pwd)
    {
        var runner = new BrowserTestRunner();

        runner.OpenBrowser(user, pwd);
        runner.ClickCart();
        // other actons here
    }
Пример #2
0
    // add other actions here
    // this starts the test for ONE browser
    public static void Start(string user, string pwd)
    {
        var runner = new BrowserTestRunner();

        runner.OpenBrowser(user, pwd);
        // wait for stuff, check data, prepare the next steps
        // for example
        // runner.ClickCart();
        // other actons here
    }