string fileName = @"C:\Users\Public\Documents\KullanıcıAdları.txt";
string writeText = textBox3.Text;
FileStream fs = new FileStream(fileName, FileMode.OpenOrCreate, FileAccess.Write);
fs.Close();
string[] lines = File.ReadAllLines(@"C:\Users\Public\Documents\KullanıcıAdları.txt");
if (lines.Length > 0)
textBox3.Text = lines[0];
string A = ("https://www.instagram.com/");
driver.Navigate().GoToUrl(string.Concat(A, lines[1]));
System.Threading.Thread.Sleep(3000);
driver.Navigate().GoToUrl(string.Concat(A, lines[2]));
System.Threading.Thread.Sleep(3000);
File.Delete(@"C:\Users\Public\Documents\KullanıcıAdları.txt");
driver.Close();