Esempio n. 1
0
        public void WaitSizeGuideDiv()
        {
            wait.WaitElementInteractable(10, bySizeGuideContent);
            wait.WaitElementInteractable(10, byChartTable);

            actions.MoveToElement(SizeGuideDropdown);

            wait.WaitElementInteractable(5, bySizeGuideDropdown);
            wait.WaitElementExists(5, bySizeGuideDropdownSelect);
        }
Esempio n. 2
0
        public void MustConverModelAndProductMeasurement()
        {
            // ARRANGE: When the user is at the product page;
            product.OpenProductModelTest();

            // ACT: When the select the Size and Measurements;
            product.SizeAndMeasBtn.Click();
            actions.MoveToElement(product.SizeAndFitCollapser);

            // ASSERT: Must be possible to convert the units from  m/cm to ft/em;
            Assert.True(product.CheckMeasurementInchesConversion("model"), "There was some problem to convert the model measurments.");
            Assert.True(product.CheckMeasurementInchesConversion("product"), "There was some problem to convert the product measurments.");
        }