Exemple #1
0
        public BasePage(WebPageAttribute pageAttribute, string domain)
        {
            Url = domain + pageAttribute.Url;

            Title = pageAttribute.Title;
            SetSeleniumPropertiesByAttributes(GetLocatorByAttribute());
        }
Exemple #2
0
        public SourceModuleXml(ISource source)
        {
            fSource = source;
            Type type = fSource.GetType();

            fPostObjectAttr = GetType <BasePostObjectCreatorAttribute>(type);
            fPageMakerAttr  = GetType <BasePageMakerAttribute>(type);
            fRedirectorAttr = GetType <BaseRedirectorAttrbiute>(type);
            fPageAttr       = GetType <WebPageAttribute>(type);
        }
Exemple #3
0
 public JobSearchPage(WebPageAttribute pageAttribute, string domain) : base(pageAttribute, domain)
 {
 }