FindBy
在 Kotlin 中使用 Selenium 的注释初始化变量的最佳方法是什么?
就像是
@FindBy(id = "example")
private lateinit var button: WebElement
或者
@FindBy(id = "example")
private val button: WebElement? = null
或者
@FindBy(id = "example")
private var button: WebElement? = null
或者是其他东西?
请注意,所有以前的方法都可以完美运行。