QTP / UFT在测试执行期间更改或修改URL

时间:2018-01-08 23:50:27

标签: vbscript automated-tests hp-uft

我有一个UFT脚本,在第二个动作中,我需要更改URL DURING测试执行,因为需要在第一个URL中登录时获得的权限才能在第二个URL中工作。不要在新的工作表或窗口中工作。 有人可以帮帮我吗? 这是我的代码:

'Int user
Browser("Inicio").Page("Inicio").WebEdit("userid").Set "user"
Browser("Inicio").Page("Inicio").WebButton("Entrar").Click

Wait 3
'Int Pass
Browser("Inicio").Page("Inicio").WebEdit("password").Set "pass"
Browser("Inicio").Page("Inicio").WebButton("Aceptar").Click
Wait 10

' Change URL for work:
'In this point, i need help

1 个答案:

答案 0 :(得分:0)

不清楚你问的是什么。我的猜测是什么

  1. 您需要登录已经完成的工作。
  2. 从浏览器获取当前网址,以便您可以从网址获取特定字符串以将其放入其他网址
  3. 如果是这样,那么您可以使用浏览器页面的 GetROProperty 。所以代码就像

    Browser("Inicio").Page("Inicio"). GetROProperty ("URL")