Skip to content

Commit

Permalink
Expand js handle ignore (#2851)
Browse files Browse the repository at this point in the history
* Expand JSHandle test ignore

* just me it build
  • Loading branch information
kblok authored Dec 27, 2024
1 parent 3946d92 commit d50d0cd
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,97 @@
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[jshandle.spec] *",
"testIdPattern": "[jshandle.spec] *.asElement*",
"platforms": [
"darwin",
"linux",
"win32"
],
"parameters": [
"webDriverBiDi"
],
"expectations": [
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[jshandle.spec] *.clickablePoint*",
"platforms": [
"darwin",
"linux",
"win32"
],
"parameters": [
"webDriverBiDi"
],
"expectations": [
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[jshandle.spec] *getProperties*",
"platforms": [
"darwin",
"linux",
"win32"
],
"parameters": [
"webDriverBiDi"
],
"expectations": [
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[jshandle.spec] *.getProperty*",
"platforms": [
"darwin",
"linux",
"win32"
],
"parameters": [
"webDriverBiDi"
],
"expectations": [
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[jshandle.spec] *.jsonValue*",
"platforms": [
"darwin",
"linux",
"win32"
],
"parameters": [
"webDriverBiDi"
],
"expectations": [
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[jshandle.spec] *.evaluateHandle*",
"platforms": [
"darwin",
"linux",
"win32"
],
"parameters": [
"webDriverBiDi"
],
"expectations": [
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[jshandle.spec] *JSHandle.toString*",
"platforms": [
"darwin",
"linux",
Expand Down
6 changes: 5 additions & 1 deletion lib/PuppeteerSharp/Bidi/BidiJSHandle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@ namespace PuppeteerSharp.Bidi;

internal class BidiJSHandle : JSHandle
{
public BidiJSHandle(IsolatedWorld world, RemoteObject remoteObject) : base(world, remoteObject)
public BidiJSHandle(IsolatedWorld world, RemoteObject remoteObject)
{
}

public override RemoteObject RemoteObject { get; }

internal override IsolatedWorld Realm { get; }

public override Task<T> JsonValueAsync<T>() => throw new System.NotImplementedException();

public override ValueTask DisposeAsync() => throw new System.NotImplementedException();
Expand Down

0 comments on commit d50d0cd

Please sign in to comment.