JSHandle.asElement() 方法
¥JSHandle.asElement() method
如果句柄是 ElementHandle 的实例,则为 null
或句柄本身。
¥Either null
or the handle itself if the handle is an instance of ElementHandle.
签名
¥Signature
class JSHandle {
abstract asElement(): ElementHandle<Node> | null;
}
Returns:
ElementHandle<Node> | null