Using Karma for testing webix code

Hi
I have developed some custom views in webix, I have to write some unit testcases to test views I have created . Can you please throw some light on how to write the tests for webix code.

I would like to give some example scenarios for my testing:
I have a custom toolbar with three combo which has some options on clicking them, how to get the values from the combo boxes and compare

Hi,

As far as I know in case of Karma test, you have a fully working browser environment, so you can use a normal component’s API

If you know combo id , you can use $$("combo id").getValue() to get value of the control. Or you can get the full list of options like $$("combo_id").getList().serialize()