在硒中是什么

发布于 2025-01-21 20:32:05 字数 137 浏览 0 评论 0原文

driver.findElement(By.id(//[@id='kishr']));

上面是什么?

类是,<代码>参考还是对象

driver.findElement(By.id(//[@id='kishr']));

What is By above?

Is this class ,reference or object ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〃安静 2025-01-28 20:32:05

抽象类

ID静态方法,因此IS linkTextpartialLinkTextnametagNamexpathclassNamecssselector中通过抽象类

由于它是类级方法,因此您实际上不需要对象来调用这些方法。

by.idby.xpath等。

官方文档

By is an abstract class

and

id is a static method, so is linkText, partialLinkText, name, tagName, xpath, className, cssSelector in By abstract class.

Since it's a class level methods, you don't really need an object to call these methods.

By.id or By.xpath etc. should suffice.

Official docs

甜宝宝 2025-01-28 20:32:05

by是一个摘要类,它提供了一种用于定位定位器的各种搜索标准的方法,它为8个定位器状态提供了8种方法,所有8种方法都是静态的,所以我们必须使用类名称,

By is an abstract class its provides a way to various search criteria's to locate the locator, it provides 8 method for 8 locator stategies,All 8 method are static so call them we have to use class name,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文