Ask a Question

css class

ChrisPro
Contributor

css class

In HTML page, I have the following code :

tr class="ClassName" align="center"

 With Xpath, I succed to access to this element, but I would like to have proprieties of class "ClassName".

An idea?

5 REPLIES 5
HKosova
SmartBear Alumni (Retired)

You probably need something like this:

 

pageObj.contentDocument.styleSheets[index].cssRules[index]

More info:

How do you read CSS rule values with JavaScript?

document.StyleSheets

CSSStyleSheet object

CSSRule object


Helen Kosova
SmartBear Documentation Team Lead
________________________
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
jmcpeek
Contributor

You could also use queryselector.

 

pageObject.queryselector("tr.ClassName")

sanjayvaniya
Occasional Contributor

Try this

(By.ClassName("ClassName"));

@sanjayvaniya :
This is TestComplete but not Selenium forum and By will not work in TestComplete.

 

Regards,
  /Alex [Community Champion]
____
[Community Champions] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Champions]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Champion] signature is assigned on quarterly basis and is used with permission by SmartBear Software.
https://community.smartbear.com/t5/Community-Champions/About-the-Community-Champions-Program/gpm-p/252662
================================
ishan_07
Occasional Contributor

Hello,
You can use attr() function to retrive the value of the attribute. You can use it by just passing attribute name in the function and you will get a value as a result. Following is the example of attr() function.

E.x.

attr(class)

 

cancel
Showing results for 
Search instead for 
Did you mean: