How do you use WatiN to click on an Ajax toolkit TabContainer header? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T14:01:00Zhttp://stackoverflow.com/feeds/question/415583http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/415583/how-do-you-use-watin-to-click-on-an-ajax-toolkit-tabcontainer-header1How do you use WatiN to click on an Ajax toolkit TabContainer header?randy.klingelheber2009-01-06T05:45:54Z2009-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#4173720Answer by randy.klingelheber for How do you use WatiN to click on an Ajax toolkit TabContainer header?randy.klingelheber2009-01-06T17:13:00Z2009-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>