如何在变量中存储页面的当前URL以便在TestComplete上进行验证

时间:2016-05-08 10:45:08

标签: testcomplete

我正在研究testcomplete自动化工具。我想知道如何将当前URL存储在变量中以进行验证。例如,

我点击了一个将我带到特定页面的链接。我想验证该页面的URL。我怎么能这样做?

2 个答案:

答案 0 :(得分:0)

您可以使用Page对象的URL属性。有关此属性的信息以及脚本示例,请参阅本文档: URL Property (Page Objects)

答案 1 :(得分:0)

如果它没有在选项卡/窗口中打开,那么这应该可以正常工作:

function PageSample()
{

  Browsers.Item(btIExplorer).Run("http://smartbear.com/");

  // Obtains the browser process
  var browser = Sys.Browser("iexplore");
  // Obtains the page currently opened in Internet Explorer
  var page = browser.Page("*");
  // Use the page object property and add a checkpoint to validate

  …

}