Unplanned
Last Updated: 01 May 2023 14:04 by Richard Beverly
Richard Beverly
Created on: 01 May 2023 14:04
Type: Bug Report
0
Issue with find element using jQuery API

The below snippet to find specific element fails to return the expected element. The Content is of the same element regardless of the "parent()" method.

 var item = Find.jQuery()
                    .tag("div")
                    .classes(new string[]{"className"})
                    .contains(name)
                    .parent()
                    .first()
                    .Content;


0 comments