这个函数其实就是获取文件所在的绝对路径
例:test_path.py文件路径是F:\hhh\pytest1\testcases\test_path.py
使用os.path.dirname(os.path.realpath(__file__))获得的路径是F:\hhh\pytest1\testcases
再套一层os.path.dirname获得的路径是F:\hhh\pytest1,通过这样的方式可以获得项目的根路径
这个函数其实就是获取文件所在的绝对路径
例:test_path.py文件路径是F:\hhh\pytest1\testcases\test_path.py
使用os.path.dirname(os.path.realpath(__file__))获得的路径是F:\hhh\pytest1\testcases
再套一层os.path.dirname获得的路径是F:\hhh\pytest1,通过这样的方式可以获得项目的根路径