Getting error : org.openqa.selenium.WebDriverException: unknown error: keys should be a string
Getting error : org.openqa.selenium.WebDriverException: unknown error: keys should be a string I am getting the error to access the data from the properties file in my selenium UI : How can this be solved ? org.openqa.selenium.WebDriverException: unknown error: keys should be a string. I have the following framework. I made it for my self for ease, looks like complicating myself. If any good ideas to better it, please suggest. Appreciate all suggestions. Framework contains the following : 1. config properties file 2. utilities class 3. Page elements definition class file 4. reusable functions class file 5. test classes config.properties file has the following content : config.properties url=http://some.com Email=someuser Password=somepassword Utilities class ( BrowserCalls ) the following code : BrowserCalls import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import ja...