Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/py/test/selenium/webdriver/common/opacity_tests.py
1865 views
1
# Licensed to the Software Freedom Conservancy (SFC) under one
2
# or more contributor license agreements. See the NOTICE file
3
# distributed with this work for additional information
4
# regarding copyright ownership. The SFC licenses this file
5
# to you under the Apache License, Version 2.0 (the
6
# "License"); you may not use this file except in compliance
7
# with the License. You may obtain a copy of the License at
8
#
9
# http://www.apache.org/licenses/LICENSE-2.0
10
#
11
# Unless required by applicable law or agreed to in writing,
12
# software distributed under the License is distributed on an
13
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
# KIND, either express or implied. See the License for the
15
# specific language governing permissions and limitations
16
# under the License.
17
18
import pytest
19
20
from selenium.webdriver.common.by import By
21
22
23
@pytest.mark.xfail_ie
24
def test_should_be_able_to_click_on_elements_with_opacity_zero(driver, pages):
25
pages.load("click_jacker.html")
26
element = driver.find_element(By.ID, "clickJacker")
27
assert "0" == element.value_of_css_property("opacity"), (
28
"Precondition failed: clickJacker should be transparent.\
29
Value was %s"
30
% element.value_of_css_property("opacity")
31
)
32
element.click()
33
assert "1" == element.value_of_css_property("opacity")
34
35
36
@pytest.mark.xfail_ie
37
def test_should_be_able_to_select_options_from_an_invisible_select(driver, pages):
38
pages.load("formPage.html")
39
select = driver.find_element(By.ID, "invisi_select")
40
options = select.find_elements(By.TAG_NAME, "option")
41
apples = options[0]
42
oranges = options[1]
43
44
assert apples.is_selected()
45
assert not oranges.is_selected()
46
47
oranges.click()
48
assert not apples.is_selected()
49
assert oranges.is_selected()
50
51