What are you trying to accomplish here? IJavaScriptExecutor doesn't inherit from IWebDriver and vice versa. From the decompiled sources, here are the signatures:
public interface IWebDriver : ISearchContext, IDisposable {}
public interface ISearchContext {}
public interface IJavaScriptExecutor {}
If you want to perform a cast on a mocked instance, you'll need to use the Object property, which is of the actual type being mocked, as in:
var jsExecutor = (IJavaScriptExecutor) _mockBrowserDriver.Object;
In this instance, you'll still get an invalid cast exception.
As an aside, why are you trying to mock IWebDriver? As it tends to be used for acceptance testing, are you trying to unit test your acceptance test code? If not, are you actually using IWebDriver in your production code?