Example #1
0
        private new void WaitForElements()
        {
            JobSearchSection = WaitForElementToBeInDom <HtmlControl>(CareersSelector.JobSearchSection);
            WaitForGivenElementToBeVisible(JobSearchSection);
            JobOffersLink = JobSearchSection.FindChildElement <HtmlHyperLink>(TagNames.Anchor);

            base.WaitForElements();
        }
Example #2
0
        protected void WaitForElements()
        {
            CapGeminiLogo = WaitForElementToBeInDom <HtmlHyperLink>(CapGeminiSelectors.CapGeminiLogo);
            Menu          = WaitForElementToBeInDom <HtmlControl>(CapGeminiSelectors.Menu);

            WaitForGivenElementToBeVisible(CapGeminiLogo);
            WaitForGivenElementToBeVisible(Menu);
        }
Example #3
0
        private new void WaitForElements()
        {
            OfferTitle       = WaitForElementToBeInDom <HtmlControl>(JobOfferSelectors.OfferTitle);
            OfferApplyButton = WaitForElementToBeInDom <HtmlHyperLink>(JobOfferSelectors.OfferApplyLink);
            OfferBody        = WaitForElementToBeInDom <HtmlControl>(JobOfferSelectors.OfferBody);
            OfferDescription = WaitForElementToBeInDom <HtmlControl>(JobOfferSelectors.OfferDescription);
            OfferLocation    = WaitForElementToBeInDom <HtmlControl>(JobOfferSelectors.OfferLocation);

            WaitForGivenElementToBeVisible(OfferTitle);
            WaitForGivenElementToBeVisible(OfferApplyButton);
            WaitForGivenElementToBeVisible(OfferBody);

            base.WaitForElements();
        }