在
qtp中,對於網頁鏈結的
測試可以使用link物件,例如下面的指令碼用於對鏈結的位址進行檢查:
browser("welcome: mercury tours").page("welcome: mercury tours"
).link("register").checkproperty ("url"
,其中使用了checkproperty方法,用於對比link物件的url屬性是否等於指定的位址。也可以使用link物件的
object屬性中的href屬性來進行比較,例如下面的**所示:
href = browser("welcome: mercury tours").page("welcome: mercury tours
").link("register").object.href
『 如果位址不正確,則報告錯誤
if not href ="" then
reporter.reportevent micfail,"link error",href
exitaction
end if
鏈結mysql的兩種方法
您可以使用mysql二進位制方式進入到mysql命令提示符下來連線mysql資料庫。例項以下是從命令列中連線mysql伺服器的簡單例項 root host mysql u root p enter password 在登入成功後會出現 mysql 命令提示視窗,你可以在上面執行任何 sql 語句。以...
R語言鏈結MySQL的兩種方法
一 rodbc 2 選擇odbc,開始選單搜尋即可。系統dsn 新增。查詢到mysql odbc 5.3 ansi driver或者mysql odbc 5.3 unicode driver。目前沒有必要研究這兩者的差別,隨便選擇。3 配置引數 data source name,後續會顯示在名稱中,...
js判斷物件型別的兩種方法
在js 中 有一種判斷資料基本型別的方法 typeof 只能判斷5中基本型別 即 number string undefined boolean object 五種。用法為 typeof 1typeof str console.log typeof 1 列印出 number typeof a str...