I want to provide a relative path in serenity.properties
file. So that my project is OS independent.
When I am trying:
chrome_preferences.download.default_directory = /target
it is failing, means chrome's default directory doesn't change but when I give full path like this
chrome_preferences.download.default_directory = D:\\automation-practice-tests\\target
it works perfectly fine, but if I choose to use absolute path it will not remain OS independent.
How can I fix it?