經(jīng)常發(fā)現(xiàn)很多同學裝好了python+selenium webdriver開發(fā)環(huán)境后不知道怎么去查看api文檔,在這里乙醇簡單介紹一下具體方法,其實非常簡單。
首先打開命令行,在dos窗口輸入:
python -m pydoc -p 4567
簡單解釋一下:
python -m pydoc表示打開pydoc模塊,pydoc是查看python文檔的工具;
-p 4567表示在4567端口上啟動server;
然后在瀏覽器中訪問http://localhost:4567/,此時應該可以看到python中所有的Modules
按ctrl+f,輸入selenium,定位到selenium文檔的鏈接,然后點擊進入到http://localhost:4567/selenium.html這個頁面
這是selenium文檔所在的位置了,接下來便可以根據(jù)自己的需要進行查看了。舉個例子,如果你想查看Webdriver類的基本方法,可以訪問這個頁面http://localhost:4567/selenium.webdriver.remote.webdriver.html