BROWSER.VERSION = 537.36 BROWSER.NAME = Safari BROWSER.PLATFORM = Windows NT 10.0 BROWSER.LANGUAGE = en BROWSER is a special macro, that basically pulls the HTTP.USER-AGENT string and breaks it up into the four parts above. So you can display that too if you want:
HTTP.USER-AGENT:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36
string test: "chrome"?http.user-agent = true
string test: "safari"?http.user-agent = true
bool test: browser.safari = true
bool test: browser.chrome = true
bool test: browser.firefox = false
bool test: browser.iphone = false
bool test: browser.ipad = false
bool test: browser.mobile = false
bool test: browser.facebook = false
bool test: browser.fblc = false
string test: "mobile safari"?http.user-agent = false
FIREFOX VERSION CHECKS bool test: browser.version = "3.6" = false
bool test: browser.version >= "4.0" = false
bool test: browser.version >= "5.0" = false