Protractor-nodejs:如何从 url 中捕获动态文本
Posted
技术标签:
【中文标题】Protractor-nodejs:如何从 url 中捕获动态文本【英文标题】:Protractor-nodejs : How to capture the dynamic text from the url 【发布时间】:2021-10-10 05:17:00 【问题描述】:我想使用量角器节点 js 从以下 URL 捕获“PR001-CC001234”。我知道如何获取当前 url 并将其存储在变量中。但是在捕获 url 末尾的动态文本时需要帮助。
http://example.com/cont/abc/PR123/region/Locale/01/PR001-CC01234.html?path=/cont/abc/PR123/region/locale/01/PR001-CC01234
【问题讨论】:
【参考方案1】:你可以这样做
const url =
"http://example.com/cont/abc/PR123/region/Locale/01/PR001-CC01234.html?path=/cont/abc/PR123/region/locale/01/PR001-CC01234";
const parts = url.split("/");
console.log(parts[parts.length - 1]);
//PR001-CC01234
【讨论】:
以上是关于Protractor-nodejs:如何从 url 中捕获动态文本的主要内容,如果未能解决你的问题,请参考以下文章
如何从原始 URL Visual Basic .NET 中获取重定向的 URL