Comment #2 on issue 1203 by rasangaKS: Remote library instantiated for each keyword call
http://code.google.com/p/robotframework/issues/detail?id=1203

I was using the RemoteServer class with my library class as arguments, just going through the code i can see for each call of run_keyword method will

Type classType = library.GetType(libraryClass);
            object libObj = Activator.CreateInstance(classType);
            MethodInfo mi = classType.GetMethod(keyword);

is this expected?

Reply via email to