我想保存部分 URL,但我真的不知道该怎么做。我想将 URL 的一部分保存在变量中。
有人知道怎么做吗?
首先,要获取当前 url,请使用
current_url = WebUI.getUrl()
然后你需要使用某种字符串操作来获得你需要的部分。
Katalon 使用 Groovy 语言,因此您可以在此处阅读有关字符串方法的信息。
例如,如果current_url='https://www.tutorialspoint.com/groovy/groovy_strings.htm'
您希望在最后一次/
尝试之后只获取 url 的一部分,请尝试以下操作:
split_url = current_url.split('/')
partial_url = split_url[split_url.size()-1]
println partial_url
上面的结果是“groovy_strings.htm”。