TestcaseStepRunner can not access a member of class <X> with modifiers "private"


Cause: This error is commonly caused when the method with CustomTestStep is given the private access modifier instead of public.


Solution:

You can fix this easily by changing the modifier from private to public.