I'd like to ask how to assign an id to a menu button? I mean the following: I am adding an extra plugin and it has an icon in the menu. For functional testing purposes I need to click the icon. For the moment the menu elements have the following form:
<a id="cke_36" title="Link" ... > <span id="cke_36_label" ... >link</span> </a>
What I want is to be able to assign id to the a element in order to have sort of
<a id="link" ...
and not
<a id="cke_36" ...
Is it possible?