1. 程式人生 > >Python+Selenium學習筆記6 - os模塊

Python+Selenium學習筆記6 - os模塊

瀏覽器 htm abs sel case 打開 結果 關於 導入

os模塊是關於文件/目錄方面的

導入語法

import os

相關方法

path.abspath() 用來獲取當前路徑下的文件

os.path.abspath(‘checkbox.html‘) 這句獲得的結果是E:/Python-Project/threeCases/checkbox.html,但是不能用瀏覽器打開。

可以在前面加上file:/// 如下

file_path = ‘file:///‘ + os.path.abspath(‘checkbox.html‘) 這句獲得的結果是file:///E:/Python-Project/threeCases/checkbox.html,這種格式才能在瀏覽器上打開

Python+Selenium學習筆記6 - os模塊