Selecting a particular colored cell in the application

hi, I have a situation where I have to select a particular colored cell from the table in an application not from the excel sheet. how can I do that. Im able to select the values of that particular cell through CV but how can I get the color of that cell? Please suggest

@k_komatla

Welcome to the community…

If the color details are available within the html then we can use get attribute activity…

If it is in the css then we can try using inject java script and get the color value…

First get thw element and then get the style property of the element from there we can get the color in javascript

Eg:

window.getComputedStyle( document.body ,null).getPropertyValue('background-color’); 

Cheers