public MtMerchandiseSalesChannelsPage(IMtCommonToMerchandisePages commonPage, IMtMerchandiseSalesChannelDetailsPage detailsPage)
 {
     PageFactory.InitElements(Driver, this);
     _commonPage  = commonPage;
     _detailsPage = detailsPage;
     _className   = GetType().ToString();
 }
 public MtMerchandiseShipBoxCategoriesPage(IMtCommonToMerchandisePages common, IMtMerchandiseShipBoxCategoriesDetailsPage details)
 {
     PageFactory.InitElements(Driver, this);
     _className = GetType().Name;
     _common    = common;
     _details   = details;
 }
Esempio n. 3
0
 public MtMerchandiseShippingMethodsPage(IMtCommonToMerchandisePages common, IMtMerchandiseShippingMethodsDetailsPage detail)
 {
     PageFactory.InitElements(Driver, this);
     _common = common;
     _detail = detail;
 }
 public MtMerchProductTypesByAspectRatioPage(IMtCommonToMerchandisePages commonPage)
 {
     PageFactory.InitElements(Driver, this);
     _commonPage = commonPage;
     _className  = GetType().ToString();
 }
 public MtMerchandiseProductCategoriesPage(IMtCommonToMerchandisePages common)
 {
     _common = common;
     PageFactory.InitElements(Driver, this);
 }