我正在从事自动化项目,我需要知道如何使用 puppeteer-Jest 来检查 chrome 扩展是启用还是禁用?如果启用扩展运行这些步骤,如果不运行其他步骤?
我知道 Java selenium 有这样的东西:
enabledButton= driver.find_element_by_id("button-enabledButton")
if enabledButton.is_selected():
//do stuff if selected
if else
//run other steps