PhantomJS 安裝步驟

2021-07-10 10:08:17 字數 694 閱讀 7289

一、windows

1、安裝

2、配置環境變數

在我的電腦-屬性-環境變數 patch 裡面增加如下字段(路徑為安裝路徑)

c:\program files\phantomjs-2.1.1\bin;

3、使用

建立hello.js

console.log('hello, world!');

phantom.exit();

在命令列執行

phantomjs hello.js
輸出結果為:hello, world!

二、linux

2、解壓和拷貝[也可做軟鏈結]

# tar -jxvf phantomjs-2.1.1-linux-i686.tar.bz2

# cp phantomjs-2.1.1-linux-i686/bin/phantomjs /usr/local/bin/phantomjs

解壓後bin目錄下的 phantomjs 二進位制檔案即是可呼叫命令。

拷貝是為了在以後呼叫命令時不必輸入命令全路徑。

3、使用,和windows下相同,進行測試

# phantomjs hello.js
或者

# phantomjs -v

安裝phantomjs報錯解決

最近有個專案要搞下jenkins自構建,微服務中註冊中心用了jhipster registry,需要編譯前端 yarn執行過程中,phantomjs解壓安裝報錯。找度娘問了下,提供包的很少,要麼速度賊慢 要麼藏著掖著,要積分 要麼方法不行,吐槽下o o。後來重新看了下包,其實是解壓方式有問題,這個b...

PhantomJS安裝與測試

from selenium import webdriver 呼叫環境變數指定的 phantomjs 瀏覽器建立瀏覽器物件 driver webdriver.phantomjs get 方法會一直等到頁面被完全載入,然後才會繼續程式,通常測試會在這裡選擇 time.sleep 2 driver.ge...

phantomjs 安裝和試用

執行js 檔案費了一點周折,開啟那個解壓後bin目錄下的phantomjs.exe,發現直接執行 js檔案總是報出 can t find variable 檔名 的錯誤提示,後來發現用windows自帶的命令列 phantomjs 檔名.js 就可以成功執行。具體phantomjs.exe開啟後能不...