0

我正在编写一个向 Google Lighthouse 的 CMD 发送命令的工具,并希望在 URL 无效时捕获错误。我会使用什么例外?

我目前正在尝试在输入无效 URL 时在异常中捕获 RuntimeError。

try:
    os.system("lighthouse --quiet {} {} {} {} {} --output-path={}/{}.html ".format(DevEmuStr,throttlingVar,CacheStr,presetVar,url,reportlocation,filename))
except RuntimeError:
    print("Please provide a proper URL")

我仍然得到以下信息,而不是“请提供正确的 URL”:

Runtime error encountered: The URL you have provided appears to be invalid.
LHError: INVALID_URL
at lighthouse (C:\Users\sugar\AppData\Roaming\npm\node_modules\lighthouse\lighthouse-core\index.js:44:11)
at chromeP.then._ (C:\Users\sugar\AppData\Roaming\npm\node_modules\lighthouse\lighthouse-cli\run.js:182:12)
at process._tickCallback (internal/process/next_tick.js:68:7)

Lighthouse 只是继续下一个 URL

我还能发现另一个错误吗?

4

2 回答 2

1

感谢所有试图帮助我的人,我终于找到了一种方法。

通过添加这个:

lh_url_ok = os.system("lighthouse --quiet {} {} {} {} {} --output-path={}/{}.html ".format(DevEmuStr,throttlingVar,CacheStr,presetVar,url,reportlocation,filename))
if lh_url_ok >0:
    print("Error")

我能够检查退出代码是否高于 0(0=没有错误)

于 2018-12-21T15:34:17.503 回答
0

不,您不能从 Python 中捕获到异常。

在我看来,“遇到运行时错误”是由灯塔打印的输出,它不是您可以捕获的实际 Python 异常。

Python 对以 os.system 开头的可执行文件的内部情况一无所知,您只能获取输出和退出代码。

于 2018-12-21T13:39:51.553 回答