Any one using Selenium to test JSCook Menus?

2007-06-05 Thread Paul Spencer
I am using Selenium to test the UI portion of my application. Currently I am having trouble testing the menus generated by the JSCookMenu. Specifically I do not know what to enter for Target when trying to click on the menu using the click command. Is any testing JSCookMenus with Selenium?

Re: Any one using Selenium to test JSCook Menus?

2007-06-05 Thread Svilen Ivanov
Hi, I use selenium to test t:tree2. My problem was how to locate the [+] or [-] icon in front of specific node. I ended up writing my own locator (in selenium terms) that traverses the DOM near the node's text and finds image tags with specific URL (plus.png/minus.png). Locating the image makes

Re: Any one using Selenium to test JSCook Menus?

2007-06-05 Thread Paul Spencer
Svi, Thank you point me to user-extensions. I was hoping for a simpler solution :) Paul Spencer Svilen Ivanov wrote: Hi, I use selenium to test t:tree2. My problem was how to locate the [+] or [-] icon in front of specific node. I ended up writing my own locator (in selenium terms) that