-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathtest_chrome.py
More file actions
77 lines (65 loc) · 1.91 KB
/
test_chrome.py
File metadata and controls
77 lines (65 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# 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/.
import os
import pytest
pytestmark = pytest.mark.nondestructive
@pytest.mark.chrome
def test_launch(testdir):
file_test = testdir.makepyfile("""
import pytest
@pytest.mark.nondestructive
def test_pass(webtext):
assert webtext == u'Success!'
""")
testdir.quick_qa(
"--driver",
"Remote",
"--capability",
"browserName",
"chrome",
file_test,
passed=1,
)
@pytest.mark.chrome
def test_options(testdir):
testdir.makepyfile("""
import pytest
@pytest.fixture
def chrome_options(chrome_options):
chrome_options.binary_location = '/foo/bar'
return chrome_options
@pytest.mark.nondestructive
def test_pass(selenium): pass
""")
reprec = testdir.inline_run(
"--driver", "Remote", "--capability", "browserName", "chrome"
)
passed, skipped, failed = reprec.listoutcomes()
assert len(failed) == 1
out = failed[0].longrepr.reprcrash.message
assert "no chrome binary at /foo/bar" in out
@pytest.mark.xfail(reason="Remote driver currently doesn't support logs")
@pytest.mark.chrome
def test_args(testdir):
file_test = testdir.makepyfile("""
import pytest
@pytest.fixture
def driver_log():
return None
@pytest.fixture
def driver_args():
return ['--log-path=foo.log']
@pytest.mark.nondestructive
def test_pass(selenium): pass
""")
testdir.quick_qa(
"--driver",
"Remote",
"--capability",
"browserName",
"chrome",
file_test,
passed=1,
)
assert os.path.exists(str(testdir.tmpdir.join("foo.log")))