Variables 变量
使用 Catenate 关键字
${base_url} http://www.appblog.cn
${api_user_url} ${base_url}/api/user
Keywords 关键字
${str1} Catenate Hello World #默认以空格作为间隔符
${str2} Catenate SEPARATOR=--- Hello World
${str3} Catenate SEPARATOR= Hello World #无连接符,即以空字符串作为连接符
执行结果:
${str1} = 'Hello World'
${str2} = 'Hello---World'
${str3} = 'HelloWorld'




