public void SelectJobRequisition(int jobId)
        {
            var scrollTable = new ScrollTable(_driver);

            scrollTable.ClickItemId(jobId);
        }
Esempio n. 2
0
        /// <summary>
        /// Check to see if a category exists on the Edit Forms page
        /// </summary>
        /// <param name="categoryName">The name of the category to find</param>
        /// <returns>True if the form was found, false otherwise</returns>
        public bool CategoryExists(string categoryName)
        {
            var scrollTable = new ScrollTable(_driver);

            return(scrollTable.FindItem(categoryName, CategoryNames));
        }
Esempio n. 3
0
        /// <summary>
        /// Check to see if the form exists on the Edit Forms page
        /// </summary>
        /// <param name="formId">The ID of the form to find</param>
        /// <returns>True if the form was found, false otherwise</returns>
        public bool FormExists(int formId)
        {
            var scrollTable = new ScrollTable(_driver);

            return(scrollTable.FindItem(formId));
        }
Esempio n. 4
0
        /// <summary>
        /// Check to see if the form exists on the Edit Forms page
        /// </summary>
        /// <param name="formName">The name of the form to find</param>
        /// <returns>True if the form was found, false otherwise</returns>
        public bool FormExists(string formName)
        {
            var scrollTable = new ScrollTable(_driver);

            return(scrollTable.FindItem(formName, FormNames));
        }
Esempio n. 5
0
        public void SelectForm(int formId)
        {
            var scrollTable = new ScrollTable(_driver);

            scrollTable.SelectItem(formId);
        }