Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
sudhe_elir009@yahoo.co.in
Posts : 1
Join date : 2016-04-30

Not receiving correct value from Config file in Selenium webdriver Empty Not receiving correct value from Config file in Selenium webdriver

Sat Apr 30, 2016 11:14 am
Have data in config file as 
Code:
test_data_path = C:\\Sudheer\\Sudheer\\Selinium scripts\\Webdriverscrip\\Automation_Project\\TestData\\Nlpapplication.xlsx

when I run my below script result is shown with one Slash missing
Code:
C:\Sudheer\Sudheer\Selinium scripts\Webdriverscrip\Automation_Project\TestData\Nlpapplication.xlsx

============================================================================

Code:
public class Testconfigvalues  {
    public static void main(String[] args) throws IOException {
        FileInputStream fs = null;
        fs = new                                      FileInputStream(System.getProperty("user.dir")+"\\config.properties");
                Properties property=new Properties();
                property.load(fs);
            String data_test_data_path = property.getProperty("test_data_path");
        System.out.println("value is " +data_test_data_path);
    }
avatar
murthi
Active particpant
Active particpant
Posts : 11
Join date : 2016-04-14
Location : Bangalore

Not receiving correct value from Config file in Selenium webdriver Empty Re: Not receiving correct value from Config file in Selenium webdriver

Wed Jul 20, 2016 5:06 pm
Hi Sudhe,

It is normal that slash will be truncated when you print it. You are loading xlsx file into properties class. It will take xml, properties file without any issue. I guess, it wouldn't take xlsx file directly, you can load it from xml and properties file directly. Consider using the xml or properties files. If you want xlsx then go for reading xlsx file with different method like apachi poi, etc.

Thanks,
Murthi. S
Back to top
Permissions in this forum:
You cannot reply to topics in this forum