New way of reading configurations from file and deserializing

This commit is contained in:
2022-01-27 09:44:16 +01:00
parent 55f9bb666b
commit aabebc3e1e
8 changed files with 64 additions and 18 deletions

View File

@ -1,9 +1,13 @@
using EATestFramework.Driver;
using System;
namespace EATestFramework.Settings
{
public class TestSettings
{
public BrowserType BrowserType { get; set; }
public Uri ApplicationUrl { get; set; }
public int TimeoutInterval { get; set; }
}
}