Python 传递 javascript 给 true/false

Python passing javascript to true/false

所以我正在尝试创建一个 python 程序来检查商品是有货还是缺货。为此,我使用了 selenium chrome 网络驱动程序。为了检查商品是否有货,我使用此代码:

print(driver.execute_script("return document.body.innerText.includes('sold out')"))

我希望在 if 语句中使用它,这样我就可以 运行 一个 Discord webhook,如果它返回 true/false。

if(driver.execute_script("return document.body.innerText.includes('sold out')" == 'False')):

没有 if 语句的代码运行没问题。

我想通了!对不起。

测试 = (driver.execute_script("return document.body.innerText.includes('sold out')"))