Is there a way I can see how a method works?
public void testAddNote() throws Exception {
solo.clickOnMenuItem("Add note");
//Assert that NoteEditor activity is opened
solo.assertCurrentActivity("Expected NoteEditor activity", "NoteEditor");
//In text field 0, add Note 1
solo.enterText(0, "Note 1");
solo.goBack();
Is there a way I can see the source code for the goBack() method? new Solo() was declared. Is there a way I can see the Solo class? Where is it hidden? Thanks a lot.
ASP.Net Web Development