|
5#
楼主 |
发表于 2007-6-14 09:07:37
|
只看该作者
觉得好奇怪
Browser("BOND EG").Page("BOND EG_2").Frame("content1_2").WebEdit("to").Set DataTable("to", dtGlobalSheet)
Browser("BOND EG").Page("BOND EG_2").Frame("content1_2").WebEdit("from").Set DataTable("from", dtGlobalSheet)
Browser("BOND EG").Page("BOND EG_2").Frame("content1_2").WebEdit("server").Set DataTable("server", dtGlobalSheet)
这样执行的时候就能执行每行的参数,当每个下面加了有弹出框就记录参数,并且点击确定,如下,就第二行执行的时候,2,3列仍是第一行的参数。请大家帮忙看下
Browser("BOND EG").Page("BOND EG_2").Frame("content1_2").WebEdit("to").Set DataTable("to", dtGlobalSheet)
Dim error_to
If Browser("BOND EG").Dialog("Microsoft Internet Explorer").Exist then
error_to = Browser("BOND EG").Dialog("Microsoft Internet Explorer").GetVisibleText()
DataTable("to_result",dtGlobalSheet)=error_to
Browser("BOND EG").Dialog("Microsoft Internet Explorer").WinButton("確定").Click
end if
Browser("BOND EG").Page("BOND EG_2").Frame("content1_2").WebEdit("from").Set DataTable("from", dtGlobalSheet)
Dim error_from
If Browser("BOND EG").Dialog("Microsoft Internet Explorer").Exist then
error_from = Browser("BOND EG").Dialog("Microsoft Internet Explorer").GetVisibleText()
DataTable("from_result",dtGlobalSheet)=error_from
Browser("BOND EG").Dialog("Microsoft Internet Explorer").WinButton("確定").Click
end if
Browser("BOND EG").Page("BOND EG_2").Frame("content1_2").WebEdit("server").Set DataTable("server", dtGlobalSheet)
Dim error_server
If Browser("BOND EG").Dialog("Microsoft Internet Explorer").Exist then
error_server = Browser("BOND EG").Dialog("Microsoft Internet Explorer").GetVisibleText()
DataTable("server_result",dtGlobalSheet)=error_server
Browser("BOND EG").Dialog("Microsoft Internet Explorer").WinButton("確定").Click
end if |
|