Assistive-Webdriver

Home > vm-providers > VMFactory

VMFactory type

The virtual machine factory provided by each virtual machine provider. It is a function that takes the configuration and asynchronously returns an object that implements the VM interface.

Signature:

export declare type VMFactory<T> = (config: VMConfig<T>) => Promise<VM>;

References: VMConfig, VM