Instead of the label, use a frame's name. You can set that in the Layers panel or as follows:
myFrame.name = 'myTest';
You get a handle on that frame later by this code:
var myFrame = myDoc.textFrames.item('myTest');
Note that this returns only one frame. If there are more frames with the same name, you need to loop through the frames as outlined above.
Peter