I'M trying to upload a file via Selenium IDE, the path is the following:
driver.FindElement(By.Id("fileupload")).SendKeys("C:\\Users\\myuser\\Documents\\Visual Studio 2010\\Projects\\TestPackages\\new-package\\0.0.1\\new-package.zip");
The query fails because the sendkey path is actually:
C:\\Users\\myuser\\Documents\\Visual Studio 2010\\Projects\\TestPackages\ew-package\\0.0.1\ew-package.zip
Notice the \n disappear. How can I stop this?
Thanks