Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从输入对话框中添加了 2 个变量(john、santa123),然后尝试从浏览器范围导航到 url。
以下是导航到 URL。
" https://abcd.com/un=&username&pass=&password "
我无法导航到输入值。我究竟做错了什么?
这将我导航到:
https://abcd.com/un=username&pw=pass
而我希望它导航到
https://abcd.com/un=john&pw=santa123
请指出我正确的方向。
如果没有看到工作流程,我猜你在尝试导航到 URL 时没有打破你的字符串并连接你的变量。
您已在浏览器 URL 属性中执行以下操作:
"https://abcd.com/un=username&pw=pass"
当你应该这样做时:
"https://abcd.com/un="+username+"&pw="+pass
这是我为在实践中演示而构建的示例工作流程: