Wrapper Methods can be used for Abstraction, Standardization, and Refactoring
For example if you import a library of special helper methods and use them through out your application, then later decide to switch to a different library that will give you more functionality you would then have to rewrite every line of code that calls the previous libraries methods to call the new libraries methods. With application reaching tens and hundreds of thousands of lines this is a huge task. This happens more frequently when software is licensed and then when it expires a new option is picked.
To solve this problem you can wrap all of the Helper methods in your own methods. These methods simply be 1 line that calls the Methods in your imported library. You would call all of the wrapper methods through out your application instead of directly calling the imported library.
Now the benefit of all the abstraction comes in when you want to import the new library. Instead of rewriting every call through out the application you can simply just rewrite the wrapper methods which should be its own class. Now changing 1 method in the wrapper class updates the entire application where that method is used. (See MVC4 .NET HTML Helper methods for an example)
On the subject of standardization the wrappers can be used to set default values for many of the things that are set manually when the object is created. But now if they are set in the wrapper they no longer must be set every time the original method is called. For example you could set the dimensions of a Grid View in the Gridview wrapper and now when you call the wrapper method in your application all grid views have the same dimensions and fewer lines of code need to be maintained throughout the application; also accomplishing refactoring.