public SearchPage(Browser browser)
     : base(browser, "/search")
 {
     this.actions = new Actions(this, this.Browser);
     this.searchWidget = new SearchWidget(this.Browser);
     this.summary = new SummaryModule(this.Browser);
 }
Example #2
0
 public HomePage(Browser browser)
     : base(browser, "/")
 {
     this.actions = new Actions(this, this.Browser);
     this.searchWidget = new SearchWidget(this.Browser);
 }