Forum Discussion

kaiiii's avatar
kaiiii
Regular Contributor
9 months ago
Solved

How can I get font size from a object


There is a button that has "submit" text in it. I need to get the font size of this text "submit". 

I am not able to find any relative property or method. Can anyone please help me with the same?

  • rraghvani Thanks...your suggested page help me

     

    Below is the code that works.

     

    Set page = Sys.Browser("edge").Page("*")

    Set foundObject= page.Find("idStr", "idValue", 100)
    Set style = page.contentDocument.defaultView.getComputedStyle(foundObject, "")
    Log.Message style.fontSize

2 Replies

  • rraghvani's avatar
    rraghvani
    Champion Level 3

    Is this a desktop or web application? If it's web application then you should be able to get the CSS attribute. Desktop app will not usually reveal this information.

  • kaiiii's avatar
    kaiiii
    Regular Contributor

    rraghvani Thanks...your suggested page help me

     

    Below is the code that works.

     

    Set page = Sys.Browser("edge").Page("*")

    Set foundObject= page.Find("idStr", "idValue", 100)
    Set style = page.contentDocument.defaultView.getComputedStyle(foundObject, "")
    Log.Message style.fontSize