QuerySelection() public method

public QuerySelection ( ) : Selection
return Selection
Ejemplo n.º 1
0
        public SelectionTest()
        {
            frame = GetFrame ("gtkmenubar.py");

            menuBar = FindByRole (frame, Role.MenuBar);
            Assert.IsNotNull (menuBar, "Couldn't find the menu bar");
            selection = menuBar.QuerySelection ();
            Assert.IsNotNull (selection, "menuBar.QuerySelection");
        }