Can anyone advise, how to verify specific color using css?
I can do it with xpath locator. But I cannot with css.
This is xpath locator which is working:
//div[10][@style="background-color: rgb(255, 76, 219);"]
|
|
You need to use getCssValue
|
|||
|
|
|
Just starting with Selenium myself. Awesome testing tool! Did some searching and found: Perhaps you can do: src: http://old.nabble.com/Using-Selenium-to-find-a-row-based-on-it's-background-color-td24859281.html |
|||
|
|
|
This is not possible with CSS locators, AFAIK. Your best best to avoid XPath is a gnarly DOM locator like:
You might consider testing for a given selector instead, like:
|
|||
|
|
|
Once look at this,It may solve your problem |
|||
|
|