For the past few months I have been developing a test automation package for a web application using Selenium in C#.
In some of the tests I need to verify the driver arrived at the expected URL. So far I have been storing the expected URLs in a .resx file, but I was told this is not a very good approach.
I'm pretty new to programming so I'm sorry if this seems trivial.
Edit:
Just to clarify I'm looking for an approach to store the URLs. I don't want them hard-coded but I don't think a .resx file is a very good option either.