慕標(biāo)5832272
2023-03-30 10:18:12
我在 Windows 10 上使用 Python 3.8.3。我有以下代碼:import # all the necessary modulestry: # do somethingexcept WebDriverException: print(sys.exc_info()[0])在異常情況下,我收到以下信息:<class 'selenium.common.exceptions.SessionNotCreatedException'>我如何才能print()只輸出內(nèi)的字符串<class>?:selenium.common.exceptions.SessionNotCreatedException任何幫助,將不勝感激。
2 回答

RISEBY
TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超5個(gè)贊
要獲取異常的完整路徑,請(qǐng)使用inspect.getmodule方法獲取包名并使用type(..).__name __獲取類(lèi)名。
except WebDriverException as ex:
print (type(ex).__name__)
對(duì)于全名,請(qǐng)嘗試
import inspect
.....
print(inspect.getmodule(ex).__name__, type(ex).__name__, sep='.')
為了簡(jiǎn)單起見(jiàn),您可以只解析已有的字符串
print(str(sys.exc_info()[0])[8:-2]) # selenium.common.exceptions.SessionNotCreatedException

慕田峪9158850
TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊
也許你可以試試這個(gè)
import # anything
try:
# something
except Exception as e:
print(e)
添加回答
舉報(bào)
0/150
提交
取消