angular / webdriver-manager

A binary manager for E2E testing
MIT License
224 stars 116 forks source link

webdriver-manager 13 is not using local installed package at first #431

Closed bboycs closed 4 years ago

bboycs commented 5 years ago

Was using webdriver-manager 12.1.x for a long time. There were global version and local version (in a specific folder eg D:\test)

When we execute cli command "webdriver-manager" at non local version path (eg: D:) it will show webdriver-manager: using global installed version 12.1.7 out_dir will be getting : C:\Users\xxx\AppData\Roaming\npm\node_modules\webdriver-manager\selenium

When we execute cli command "webdriver-manager" at non local version path (eg: D:\test) it will show webdriver-manager: using local installed version 12.1.7 out_dir will be getting : D:\test\node_modules\webdriver-manager\selenium]

However when in webdriver-manager 13 it seems like it will be always reference to global instead of local even though we are execute the cli command in local installed folder.

Is it something that the expected local version of package will be no longer be in use ?