Ejemplo n.º 1
0
        public void WhenIClickPropertyDropDownMenuAndChooseValueForTheProductOnBasketPage(Table table)
        {
            foreach (var row in table.Rows)
            {
                string property = row["Property"];
                string value    = row["Value"];
                string product  = row["Product"];

                _basketPage.ClickDropDownMenu(property, value, product);
            }
        }