summaryrefslogtreecommitdiffstats
path: root/testing/marionette/harness/marionette_harness/tests/unit/test_chrome_element_css.py
blob: fde7e8373cf10e41d7b71bf7fcde5ab1181b4bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from marionette_driver.by import By

from marionette_harness import MarionetteTestCase


class TestChromeElementCSS(MarionetteTestCase):

    def test_we_can_get_css_value_on_chrome_element(self):
        self.marionette.navigate("about:blank")
        with self.marionette.using_context("chrome"):
            element = self.marionette.find_element(By.ID, "identity-icon")
            favicon_image = element.value_of_css_property("list-style-image")

            self.assertIn("identity-icon.svg", favicon_image)

            element = self.marionette.find_element(By.ID, "identity-box")
            background_colour = element.value_of_css_property("background-color")

            self.assertEqual("transparent", background_colour)