/// <inheritdoc/>
        public override void Execute <TOwner>(IUIComponent <TOwner> component)
        {
            var cellControl = component.Find <Control <TOwner> >(
                new ControlDefinitionAttribute("td")
            {
                ComponentTypeName = "cell"
            },
                new FindByIndexAttribute(Index));

            cellControl.Click();
        }