Hi,
Like the title says I've got a problem - how to click the "vote-up" button only for comments that belong to me. This action allow me to take the whole mine comment but what can I do with it?
Also i tried to do something like that
But it returns an error while I try to debug template. Can someone help me? I need to finish this asap.
Like the title says I've got a problem - how to click the "vote-up" button only for comments that belong to me. This action allow me to take the whole mine comment but what can I do with it?
Also i tried to do something like that
PHP:
Tab tab = instance.ActiveTab;
if (tab.IsBusy) tab.WaitDownloading();
HtmlElement he = tab.FindElementById("comments-view");
HtmlElement comment = he.FindChildrenByAttribute("li", "data-id", project.Variables["commentId"].Value, "text").FindChildrenByAttribute("button", "data-action", "vote-up", "text");
comment.Click();