Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
121 views
in Technique[技术] by (71.8m points)

html - How to get a web element with a class attribute with several values

This is my problem: i have this html enter image description here

as you can see there are two <div class="sc-fjhmcy dbJOiq flight-information"></div> and, i want to get the element using the class attribute, but only with the flight-information value, because I think the part that is written as nonsense code ("sc-fjhmcy dbJOiq...) change daily

I have already tried with this xmlpath, $x('//div[contains(@class, "flight-information)"'], but its not working, What could I do?...

question from:https://stackoverflow.com/questions/65895967/how-to-get-a-web-element-with-a-class-attribute-with-several-values

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I checked your code and I think that there is no big issue with this. You need to use one class name to get the element, not two names, as below. $(".sc-fjhmcy") Then, this will be run correctly. Best regards


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...