Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 PageObject 模式进行硒测试。我在 C# 中收到编译器警告 [变量从未分配给,并且将始终具有其默认值 null]。如何抑制这些警告?
将public访问修饰符添加到 WebElement。那将摆脱它。否则,您可以向该类添加一个属性以忽略这些警告。
public
在java中,它是
@SupressWarnings("unused")
这是一个通用的 C# 行为,而不是特定于 Selenium 的。
这里已经介绍 过了。