コード例 #1
0
        public void DroppablePropagationTarget()
        {
            var droppablePage = new DroppablePage(this.driver);

            droppablePage.NavigateTo();
            droppablePage.PropagationDrop.Click();
            droppablePage.InnerPropagationDragAndDrop();
            droppablePage.AssertPropagationTargetAttributeValue("ui-widget-header ui-droppable ui-state-highlight", "ui-widget-header ui-droppable ui-state-highlight");

            droppablePage.PropagationDragAndDrop();
            droppablePage.AssertPropagationTargetAttributeValue("ui-widget-header ui-droppable ui-state-highlight", "ui-widget-header ui-droppable");

            droppablePage.BothPropagationDragAndDrop1();
            droppablePage.AssertPropagationTargetAttributeValue("ui-widget-header ui-droppable ui-state-highlight", "ui-widget-header ui-droppable ui-state-highlight");

            droppablePage.BothPropagationDragAndDrop2();
            droppablePage.AssertPropagationTargetAttributeValue("ui-widget-header ui-droppable ui-state-highlight", "ui-widget-header ui-droppable ui-state-highlight");
        }