Solved
Forum Discussion
baxatob
10 years agoCommunity Hero
Hi,
Looks like problem is here:
Parent = Page.QuerySelectorAll(Parent_CSS); var all_Children = Parent.children;
querySelectorAll() method returns a list of matched elements. And then you are trying to apply children property to the list, which does not have it.
Try to use querySelector() instead or may be better:
var target_element = Page.contentDocument.getElementById("Schedule-01-Row1E-EndTime");
Log.Message(target_element.value);Mathit
8 years agoContributor
This worked like a charm