public async Task Web_MicrosoftCloud_EasyTest(){
     DeleteBrowserFiles.Execute();
     await EasyTest(NewWebAdapter, RunWebApplication, async adapter => {
         await adapter.TestMicrosoftService(async () => {
             await adapter.TestMicrosoftCalendarService();
             await adapter.TestMicrosoftTodoService();
         });
     });
 }
 public async Task Win_GoogleCloud_EasyTest()
 {
     DeleteBrowserFiles.Execute();
     await EasyTest(() => new WinAdapter(), RunWinApplication, async adapter => {
         await adapter.TestGoogleService(async() => {
             await adapter.TestGoogleCalendarService();
             await adapter.TestGoogleTasksService();
         });
     });
 }
        public async Task Web_GoogleCloud_EasyTest(){
#if !NETCOREAPP3_1_OR_GREATER
            DeleteBrowserFiles.Execute();
#endif
            await EasyTest(NewWebAdapter, RunWebApplication, async adapter => {
                await adapter.TestGoogleService(async () => {
                    await adapter.TestGoogleCalendarService();
                    await adapter.TestGoogleTasksService();
                });
            });
        }