Zeljko wrote:
> I have a h4 headline that I have to click.
>
> <h4 id="addproject">Create a new project</h4>
>
> This does not work.
>
> ie.h4(:id, "addproject").click
>
> Is there a way to click it?
>
class H4 < NonControlElement
TAG = 'H4'
end
module Container
def h4(how, what)
return H4.new(self, how, what)
end
end