コード例 #1
0
 /// <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.");
 }
コード例 #2
0
 public HtmlBlob(IWebElement enclosingElement, UiTestFixture testFixture, [CallerMemberName] string creatorName = "") : base(enclosingElement, creatorName)
 {
     TestFixture = testFixture ?? throw new ArgumentException("TestFixture is null.");
 }
コード例 #3
0
 public HtmlBlob(ISearchContext searchContext, By by, UiTestFixture testFixture, [CallerMemberName] string creatorName = "") : base(searchContext, by, creatorName)
 {
     TestFixture = testFixture ?? throw new ArgumentException("TestFixture is null.");
 }
コード例 #4
0
 internal UiConfiguration(UiTestFixture testFixture) => _uiTestFixture = testFixture;