Hi I am using C# to open a website and I would like to let the application press enter after opening the website. Is anyone know how to solve this problem?
System.Diagnostics.Process.Start(new ProcessStartInfo
{
FileName = OpenWebsite,
UseShellExecute = true
});
System.Threading.Thread.Sleep(5000);