From: aidy Date: 2007-04-04T04:40:12+09:00 Subject: invoke base class nested method Hi, I have an ObjectMap class that contains other classes. I inherit from the base class.Could someone tell me how I can run a nested class method from the inherited class? Here is the code: class ObjectMap @@ie = Watir::IE.new #each page has a class where objects of that class are mapped class Login def username;@@ie.text_field(:name, 'user_name');end def password;@@ie.text_field(:name, 'password');end def remember_me;@@ie.checkbox(:name, 'remember_me');end def sign_in;@@ie.button(:value, 'Sign in');end end class DashBoard #more methods end end class A_Test < ObjectMap @@ie.goto('www.updatelog.com') @@ie.maximize #how do I run the username method? end Need to, for example, run the username method? Thanks aidy