From e2b01c44cd8eb8519056f161083136483397ded5 Mon Sep 17 00:00:00 2001 From: Jakub Raczek Date: Wed, 7 Feb 2018 09:13:22 +0100 Subject: [PATCH] fixed failing test --- .../PageObjects/Kendo/KendoComboBoxPage.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Objectivity.Test.Automation.Tests.PageObjects/PageObjects/Kendo/KendoComboBoxPage.cs b/Objectivity.Test.Automation.Tests.PageObjects/PageObjects/Kendo/KendoComboBoxPage.cs index f2621f80a..bdfdebd9b 100644 --- a/Objectivity.Test.Automation.Tests.PageObjects/PageObjects/Kendo/KendoComboBoxPage.cs +++ b/Objectivity.Test.Automation.Tests.PageObjects/PageObjects/Kendo/KendoComboBoxPage.cs @@ -76,6 +76,7 @@ public void SearchFabricOptions(string text) { Logger.Info(CultureInfo.CurrentCulture, "Typing text {0}", text); this.Driver.ScrollIntoMiddle(this.tshirtFabricComboBoxLocator); + this.Driver.GetElement(this.tshirtFabricComboBoxLocator).JavaScriptClick(); this.FabricKendoComboBox.SendKeys(text); this.Driver.WaitForAjax(BaseConfiguration.ShortTimeout); }