how to reference plan variables in bamboo with my selenium webdriver(java) file -
i have selenium driver script
this.browsername = system.getenv("browsername"); tags.add(this.browsername); this.browserversion = system.getenv("browserversion"); tags.add(this.browserversion);
but when add variables task configuration 'variable name', 'value' , execute script , returns null
, no value passed above mentioned variables through bamboo.
bamboo adds "bamboo_" prefix variables, try it. or modify java class , print environment variables see exported
Comments
Post a Comment