Selenium IDE and toolbar

we’re using your components in our web application and I’d like to automate some UI testing using selenium.

I found some problems using it with toolbar.

dhtmlx.com/docs/products/dht … vents.html

The problem is I cannot record onclik behavior using the Selenium IDE. The IDE creates a command, but when I execute the command nothing happens. Not even an error is logged.

Im using the clickAt command and XPath //div[text()=‘Cut’]

It works only on the New and Print button, but doesn’t on the other buttons.

What could be the problem ?

onclick is not the only event that should be triggered to click an item. There is also on mouseover, mousedown, mouseup, mouseout. The order of event clicks can be like so: mouseover, mousedown, click, mouseup, mouseout. Possibly this will help.

Also you may call an event handler manually:

toolbar.callEvent(“onClick”,[“cut”]);