|
一般在Record and Run Settings中修改Web address。但是我有两个需要解决的问题:
1、在同一个Test中我需要先后打开两个web页面进行测试比较。比如我第一个Action要让它打开url1,第二个Action要让它打开url2,可以怎么做呢?由于第二个页面的checkpoint需要用到第一个页面的output value,所以我想只能在一个Test中执行,而不能分成两个。
2、在导出的vbs中我已经设好了web address:
App.Test.Settings.Launchers("Web").Address = "http://192.168.5.176:9240/html"
可是在我添加执行语句:
App.Open "E:\Mercury Interactive\QuickTest Professional\Tests\Test1", True ' Open the test in read-only mode
' set run settings for the test
Set Test = App.Test
Test.Settings.Run.IterationMode = "oneIteration"
之后Run这个脚本,它还是打开我在录制时候打开的url,而不是采用我在脚本一开头设定的web address。
请问对于某个Test中需要打开的url如何在脚本中作修改? |
|