コード例 #1
0
ファイル: LoginPage.cs プロジェクト: natynochi/TrelloTests
 public LoginPage(TrelloContext driver) : base(driver)
 {
 }
コード例 #2
0
 public SubscribersController(TrelloContext context)
 {
     _context = context;
 }
コード例 #3
0
 public CardsController(TrelloContext context)
 {
     _context = context;
 }
コード例 #4
0
 public ListsController(TrelloContext context)
 {
     _context = context;
 }
コード例 #5
0
 public HomePage(TrelloContext driver) : base(driver)
 {
 }
コード例 #6
0
 public HomeController(TrelloContext db)
 {
     _db = db;
 }
コード例 #7
0
ファイル: BasePage.cs プロジェクト: natynochi/TrelloTests
 protected BasePage(TrelloContext context)
 {
     Driver        = context.Driver;
     Configuration = context.Configuration;
 }
コード例 #8
0
ファイル: BoardPage.cs プロジェクト: natynochi/TrelloTests
 public BoardPage(TrelloContext driver) : base(driver)
 {
 }
コード例 #9
0
 public UsersController(TrelloContext context)
 {
     _context = context;
 }
コード例 #10
0
 public Hooks(TrelloContext context)
 {
     _context = context;
 }