I have tried :parent
, but it did not work:
Eg:
card-paragraph-textbox.blue-highlight :parent .edit-Text
Class Name of child: card-paragraph-textbox.blue-highlight
.
Class Name of parent: .edit-Text
.
Keyword: :parent
Please help on this!!
I have tried :parent
, but it did not work:
Eg:
card-paragraph-textbox.blue-highlight :parent .edit-Text
Class Name of child: card-paragraph-textbox.blue-highlight
.
Class Name of parent: .edit-Text
.
Keyword: :parent
Please help on this!!
There is no way, use XPath instead.
Get parent:
//*[@class='edit-Text']
Get parent via child:
//*[@class='card-paragraph-textbox blue-highlight']/..
or
//*[@class='card-paragraph-textbox blue-highlight']/parent::*