So the way I have my code set up loads the ChromeDriver before displaying the form. I need the driver to be global though so I am not sure how to handle this. Current code:
    public partial class Form1 : Form
    {
        DiscordSocketClient Client;
        IWebDriver driver = new ChromeDriver();
        string homeURL;
        string[,] betData = new string[15, 50];    
        int totalRows = 0;
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            cbDiscordChannel.SelectedIndex = 1;
            ConnectToDiscord();     
        }