From 7205bdc65dac613a118520901bdede33eac809e5 Mon Sep 17 00:00:00 2001 From: escajadillo Date: Tue, 26 Jun 2018 15:58:25 -0500 Subject: [PATCH 1/3] Update packages.config chromedriver version --- SeleniumNUnitParam/packages.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SeleniumNUnitParam/packages.config b/SeleniumNUnitParam/packages.config index 28363e1..0e5ab27 100644 --- a/SeleniumNUnitParam/packages.config +++ b/SeleniumNUnitParam/packages.config @@ -2,7 +2,7 @@ - + From ddba2b05ee0192887b9c2ed095d377e665883e8b Mon Sep 17 00:00:00 2001 From: escajadillo Date: Tue, 26 Jun 2018 16:43:19 -0500 Subject: [PATCH 2/3] Update SeleniumNUnitParam.csproj modificando tags chromedriver version 2.40 --- SeleniumNUnitParam/SeleniumNUnitParam.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SeleniumNUnitParam/SeleniumNUnitParam.csproj b/SeleniumNUnitParam/SeleniumNUnitParam.csproj index de24066..94e36c2 100644 --- a/SeleniumNUnitParam/SeleniumNUnitParam.csproj +++ b/SeleniumNUnitParam/SeleniumNUnitParam.csproj @@ -99,12 +99,12 @@ - + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + - \ No newline at end of file + From e1dc39128055713713bc114922de49861dba6897 Mon Sep 17 00:00:00 2001 From: escajadillo Date: Tue, 26 Jun 2018 17:20:57 -0500 Subject: [PATCH 3/3] Update BrowserTest.cs modificando elemento btnG por btnK --- SeleniumNUnitParam/BrowserTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SeleniumNUnitParam/BrowserTest.cs b/SeleniumNUnitParam/BrowserTest.cs index d3e4d2c..4c484f9 100644 --- a/SeleniumNUnitParam/BrowserTest.cs +++ b/SeleniumNUnitParam/BrowserTest.cs @@ -18,7 +18,7 @@ public void GoogleTest() Driver.Navigate().GoToUrl("http://www.google.com"); Driver.FindElement(By.Name("q")).SendKeys("Selenium"); System.Threading.Thread.Sleep(5000); - Driver.FindElement(By.Name("btnG")).Click(); + Driver.FindElement(By.Name("btnK")).Click(); Assert.That(Driver.PageSource.Contains("Selenium"), Is.EqualTo(true), "The text selenium doest not exist");