Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » SWTBot » How to navigate through various tabs in Eclipse search menu(How to navigate through various tabs in Eclipse search menu)
How to navigate through various tabs in Eclipse search menu [message #687953] Thu, 23 June 2011 15:14 Go to next message
Pawan Arora is currently offline Pawan AroraFriend
Messages: 2
Registered: June 2011
Junior Member
Hi,

I am new to SWTBot.
And I want to find out how we can navigate through various tabs in Eclipse search menu.
A sample code that I used:

public static SWTWorkbenchBot bot;
clickMenu("Search//Search...");
SWTBot sampleBot = bot.shell("Search").bot();


Now I want to navigate through all the search tabs available like:
Java Search, File Search, etc., etc.
While the above code opens the search pane and then takes to the first available search tab, I can't navigate within all the possible search tabs in my SWTBot test case.

I have used various options in my code like:
sampleBot.tabItem()[most options I explored] and
sampleBot.cTabItem().

It gives me exception something like the mentioned widget could not be found.

Any suggestion in this regard will be helpful.

Thanks,
Pawan



Re: How to navigate through various tabs in Eclipse search menu [message #688697 is a reply to message #687953] Sat, 25 June 2011 11:53 Go to previous message
Pawan Arora is currently offline Pawan AroraFriend
Messages: 2
Registered: June 2011
Junior Member
Hi,

I got it today. I combined activate() and setFocus() method to navigate thru" all the tabs within the Eclipse search pane.

Example of the sample code I added:
sampleBot.tabItem("Java Search").activate().setFocus();

Thanks,
Pawan
Previous Topic:SWTBot couldn't find widget -- random
Next Topic:How to Wait until the editor opens
Goto Forum:
  


Current Time: Fri Apr 26 10:32:42 GMT 2024

Powered by FUDForum. Page generated in 0.03307 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top