How do you use WatiN to click on an Ajax toolkit TabContainer header? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:01:00Z http://stackoverflow.com/feeds/question/415583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/415583/how-do-you-use-watin-to-click-on-an-ajax-toolkit-tabcontainer-header 1 How do you use WatiN to click on an Ajax toolkit TabContainer header? randy.klingelheber 2009-01-06T05:45:54Z 2009-01-06T17:13:00Z <p>I have an ajax toolkit TabContainer control on my page with a couple tabs. In my test, I would like to switch between the tabs.</p> <p>I've tried _ie.Span("tabHeaderID").Click(), .MouseDown(), .FireEvent("onclick"). I've tried these same methods on the parent span elements as well.</p> <p>I've also tried Eval-ing some javascript to set the active index like so: _ie.Eval("$get(\"ctl00_AdminContentPlaceHolder_TabContainer1\").set_activeTabIndex(1);");</p> <p>Has anyone successfully used WatiN to switch tabs?</p> http://stackoverflow.com/questions/415583/how-do-you-use-watin-to-click-on-an-ajax-toolkit-tabcontainer-header/417372#417372 0 Answer by randy.klingelheber for How do you use WatiN to click on an Ajax toolkit TabContainer header? randy.klingelheber 2009-01-06T17:13:00Z 2009-01-06T17:13:00Z <p>I have not figured out how to simulate a click on the tab header. However, I do have a way to get to the second tab - just a small variation on the eval statement from my original post:</p> <p>_ie.Eval("$find(\"ctl00_AdminContentPlaceHolder_TabContainer1\").set_activeTabIndex(1);");</p> <p>It uses $find instead of $get to get the tab container object.</p>