shaves wrote:Phillip………..I see that you are out of the office for a while but thought I would send this anyway to see if you have any ideas. I’ve run into an iMacros situation that I have never encountered before and was wondering if you have ever come across anything like this. I just developed a macro that uses WorkBrain. It basically enters a location, a start time, and a run time. It runs good on my machine. I sent it to the person who requested it and it doesn’t work for her. She is getting this error:
Error -1300: Cannot find HTML element of type "INPUT:TEXT" with attribute(s) "NAME:WRKD_DOCK_NAME_label".. Line 3:
- Code: Select all
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:page_form ATTR=NAME:WRKD_DOCK_NAME_label CONTENT=LOS<SP>ANGELES
I’ve checked her machine for the following items to confirm that it is the same as mine (they are):
- Code: Select all
(1) Tab settings in Internet Explorer
(2) iMacros Add-ons
a. iMacros Browser Helper Object (enabled)
b. iMacros for IE (enabled)
(3) iMacros version 10.3.27.5830
(4) 32 bit machine
(5) Operating System: Windows 7 Enterprise
(6) Confirmed Los Angeles is a valid value.
All of these are the same. Something has to be different. Let me know if you have any suggestions. Thanks………
Hum, correct Sub-Forum for this Thread would have been the 'General' one, it doesn't sound related to me to the 'Scripting Interface'...

(But no need to duplicate now...)
Wondering how you found out that my Name is "Phillip"...!? Hum, just kidding...!
I don't know what this 'WorkBrain' is btw..., when you use some "external" Library/Framework/Add-on/Tool/Package/whatever..., you should always include some direct Link to the "Tool" itself and/or its Documentation, I usually "act" very "lazy" in that case and don't go searching for it, ah-ah...!
But, hum..., "Something has to be different.", then yep, iMacros never makes "Mistakes" (ah-ah...!

) when you get some "Error -1300: Cannot find HTML element of type..." RuntimeError, that means that this 'ATTR=NAME:WRKD_DOCK_NAME_label' HTML Element is simply not there (or the 'FORM' has a different Name), I guess the User needs to log on to this Site, then the Content of the Page is probably "customized" for each User...
=> You would need to record your Actions on this Colleague's PC, there will very certainly be some Difference...
The 'FORM' Info is btw in most-most Cases not required, unless there are several Forms on the Web-Page, you could indeed first try:
- Code: Select all
'TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:page_form ATTR=NAME:WRKD_DOCK_NAME_label CONTENT=LOS<SP>ANGELES
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:* ATTR=NAME:WRKD_DOCK_NAME_label CONTENT=LOS<SP>ANGELES
Difficult to help you more precisely otherwise without being able to look at the Page myself...
- (F)CIM = (Full) Config Info Missing: iMacros + Browser + OS with all 3 Versions...
- I usually don't even read the Question if that (required) Info is not mentioned...
- Script & URL usually help a lot for a more "educated" Help...