File tree Expand file tree Collapse file tree
javascript/node/selenium-webdriver Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ build --test_env=GITHUB_ACTIONS
5555build --test_env=MOZ_HEADLESS
5656build --test_env=PATH # Remove once browser pinning works
5757build --test_env=SELENIUM_BROWSER
58- build --test_env=SELENIUM_MANAGER_BASE_PATH
5958build --test_env=TRAVIS
6059build --test_env=PYTHON_VERSION
6160
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ jasmine_node_test(
9090 local = True ,
9191 templated_args = ["--node_options=--require=$$(rlocation $(rootpath :tools/init_jasmine.js))" ],
9292 deps = [
93+ ":manager-linux" ,
94+ ":manager-macos" ,
95+ ":manager-windows" ,
9396 "//javascript/node/selenium-webdriver/lib/atoms:find-elements" ,
9497 "//javascript/node/selenium-webdriver/lib/atoms:get_attribute" ,
9598 "//javascript/node/selenium-webdriver/lib/atoms:is_displayed" ,
Original file line number Diff line number Diff line change @@ -47,12 +47,7 @@ function getBinary() {
4747 const file =
4848 directory === 'windows' ? 'selenium-manager.exe' : 'selenium-manager'
4949
50- let seleniumManagerBasePath
51- if ( process . env . SELENIUM_MANAGER_BASE_PATH ) {
52- seleniumManagerBasePath = process . env . SELENIUM_MANAGER_BASE_PATH
53- } else {
54- seleniumManagerBasePath = path . join ( __dirname , '..' , '/bin' )
55- }
50+ let seleniumManagerBasePath = path . join ( __dirname , '..' , '/bin' )
5651
5752 const filePath = path . join ( seleniumManagerBasePath , directory , file )
5853
You can’t perform that action at this time.
0 commit comments