//獲取預設internet瀏覽器
//設定自己的internet瀏覽器
//以下是針對windwos 7 以上的系統作出的方案
//註冊自己的瀏覽器
function regeditweb(cmdline, path: string): boolean;
var reg: tregistry;
begin
result := false;
reg := tregistry.create;
if reg.keyexists('\software\clients\startmenuinternet') then
begin
tryif not reg.keyexists('\software\clients\startmenuinternet\' + cmdline) then
begin
reg.createkey(cmdline);
end;
reg.writestring('', cmdline);
if not reg.keyexists(cmdline + '\shell\open\command') then
begin
reg.createkey('shell\open\command');
end;
reg.openkey('shell\open\command', true);
reg.writestring('', path);
finally
reg.closekey;
end;
end;
reg.free;
result := true;
end;
selenium瀏覽器操作
在元素定位中xpath使用的還算比較多,介紹一下常見的firfox和chrome瀏覽器外掛程式安裝 一 瀏覽器定位工具安裝 1 firfox firfox比較簡單,主要瀏覽器自帶的定位功能也比較強大國內也比較好的支援外掛程式安裝 1 安裝 我這裡已經安裝好了所以可以在 我的附加元件 裡面檢視,如果沒...
瀏覽器DOM操作
repaint and reflow dom事件 innerhtml 內部html,content outerhtml 外部html,content innertext 不會返回隱藏元素的文字,受 css 樣式的影響,它會觸發重排 reflow ie11及以下,不僅會移除當前元素的子節點,而且還會永...
js 操作 瀏覽器 session cookie
目錄介紹 讀取cookie 使用方法獲取cookie中的某一引數 設定 cookie 修改cookie document.cookie 中可以設定多個引數,呼叫的時候用如下的方法獲取 讀取cookie function getcookie c name return var data1 getcoo...