New projct BrowserDriver infered to help with webscraping

This commit is contained in:
2022-02-01 21:15:31 +01:00
parent 5e42d91c1e
commit 5f0c4ef990
17 changed files with 472 additions and 649 deletions

14
BrowserHelper/Messages.cs Normal file
View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BrowserHelper
{
public class Messages : IMessages
{
public string SayHello() => "Hello Viewer";
public string SayGoodBye() => "GoddBye, farewell, and good day!";
}
}