/// <summary> /// Check to see if user is on the page. Override for each page. /// </summary> public PageModel(UiTestFixture testFixture) { TestFixture = testFixture ?? throw new ArgumentException("TestFixture is null."); }
public HtmlBlob(IWebElement enclosingElement, UiTestFixture testFixture, [CallerMemberName] string creatorName = "") : base(enclosingElement, creatorName) { TestFixture = testFixture ?? throw new ArgumentException("TestFixture is null."); }
public HtmlBlob(ISearchContext searchContext, By by, UiTestFixture testFixture, [CallerMemberName] string creatorName = "") : base(searchContext, by, creatorName) { TestFixture = testFixture ?? throw new ArgumentException("TestFixture is null."); }
internal UiConfiguration(UiTestFixture testFixture) => _uiTestFixture = testFixture;