public void ThenINavigatedToPageWithBBCFormAndFillIt()
        {
            BHaveYourSay have = new BHaveYourSay(_driver);

            Dictionary <string, string> values = new Dictionary <string, string>(5);

            values.Add("Name", "Andrii");
            values.Add("Email address", "*****@*****.**");
            values.Add("Age", "20");
            values.Add("Postcode", "06666");
            values.Add("What", text);

            have.FillTheForm(values, true);
        }