参考:https://www.cnblogs.com/yufeihlf/p/6179547.html
一、绝对路径
os.path.abspath(path):返回path的绝对路径
file_path='file:///'+os.path.abspath('upfile.html') driver.get(file_path)
>>> os.path.abspath('.') 'D:\\pythontest\\ostest' >>> os.path.abspath('..') 'D:\\pythontest'