Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

239
Views
How to test result from page.evaluateHandle & el.nextElementSibling?

How do you test that child actually contains the next Element Sibling or if there was NO next sibling found?

child = await page.evaluateHandle(el => el.nextElementSibling, child);

Nothing I've found seems to work. :(

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Finally figured it out.

.nextElementSibling - returns a Node object or null.

.evaluateHandle - returns a jsHandle containing that result.

So you have to process the jsHandle container which holds the result.

jsHandle.asElement() - Returns either null or the object handle itself, if the object handle is an instance of ElementHandle.

You test for a failed result with:

if (child.asElement() === null) {
//do something
}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!