19 lines
524 B
C#
19 lines
524 B
C#
using System;
|
|
using BrowserHelper.Driver;
|
|
|
|
namespace BrowserHelper.Settings
|
|
{
|
|
public class TestSettings
|
|
{
|
|
public BrowserType BrowserType { get; set; }
|
|
public bool Headless { get; set; }
|
|
public Uri ApplicationUrl { get; set; }
|
|
public int TimeoutInterval { get; set; }
|
|
public string[] StockWishes { get; set; }
|
|
public string[] StocWishCols { get; set; }
|
|
public string[] StockGroups { get; set; }
|
|
public string[] ZNotFoundStocks { get; set; }
|
|
|
|
}
|
|
}
|