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.
有什么区别
IE.DomContainer.Button(Find.ByText("sometext")).Click();
和
IE.Button(Find.ByText("sometext")).Click();
?
无 - 除了 DomContainer,您还会在哪里寻找按钮?Button 类使用 DomContainer 和 finder 来获取按钮。
'Button' 实际上是 IE 和 DomContainer 都继承的 'Document' 的虚拟属性。所以是的,这是同一件事(如上一个答案所述)。查看这些类的定义可能是值得的,它可能会阐明事物之间的关系。