public void ResetBrowserNotInitiated()
        {
            IBrowserClient client = new PlatinumBrowserClient();

            client.DeInit();
            Assert.DoesNotThrow(() => client.ResetBrowser());
        }
        public void ResetBrowserInitiated()
        {
            IBrowserClient client = new PlatinumBrowserClient();

            client.InitBrowser();
            client.ResetBrowser();
            client.CloseBrowser();
        }