I've nearly finished my first project with Zennoposter, but just hit a road block.
My project runs a loop, hits a web page, and grabs the first element that matches a given id (using get value). However, when that element isn't on the page, the program throws an exception causing the run to stop.
How can I do a "check for element?" I tried using the javascript module, but that module didn't seem to understand what I was trying to access when I would use document.getElementById.
Or as an alternative, is there any means of exception handling? So if it fails, just skip to the next element rather than breaking out of execution.
Thanks!
My project runs a loop, hits a web page, and grabs the first element that matches a given id (using get value). However, when that element isn't on the page, the program throws an exception causing the run to stop.
How can I do a "check for element?" I tried using the javascript module, but that module didn't seem to understand what I was trying to access when I would use document.getElementById.
Or as an alternative, is there any means of exception handling? So if it fails, just skip to the next element rather than breaking out of execution.
Thanks!