(MAC)selenium python运行时报错ImportError: Start directory is not importable: '/Users/may/Documents/automatortest/frame_mp\\src\\test_case'
时间:2021-09-07 16:03:09
收藏:0
阅读:34
路径问题:(windows)
test_case_path = project_path+"\\src\\test_case
修改为以下路径 (mac)
test_case_path = project_path+"/src/test_case"
再次运行则正常!
原文:https://www.cnblogs.com/may18/p/15237522.html
评论(0)