-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbehat.yml
79 lines (73 loc) · 3.3 KB
/
behat.yml
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
78
79
default:
autoload: [ '%paths.base%/tests/behat/bootstrap' ]
gherkin:
# Disable caching during development. It is enabled for profiles below.
cache: ~
filters:
# Allow skipping tests by tagging them with "@skipped".
tags: "~@skipped"
suites:
default:
paths: [ '%paths.base%/tests/behat/features' ]
contexts:
- FeatureContext
- BehatCliContext
- Drupal\DrupalExtension\Context\MinkContext
- Drupal\DrupalExtension\Context\MarkupContext
- Drupal\DrupalExtension\Context\MessageContext
- DrevOps\BehatScreenshotExtension\Context\ScreenshotContext
extensions:
Drupal\MinkExtension:
browserkit_http: ~
base_url: http://nginx:8080
files_path: '%paths.base%/tests/behat/fixtures'
browser_name: chrome
javascript_session: selenium2
selenium2:
wd_host: "http://chrome:4444/wd/hub"
capabilities:
browser: chrome
extra_capabilities:
"goog:chromeOptions":
args:
- '--disable-gpu' # Disables hardware acceleration required in containers and cloud-based instances (like CI runners) where GPU is not available.
# Options to increase stability and speed.
- '--disable-extensions' # Disables all installed Chrome extensions. Useful in testing environments to avoid interference from extensions.
- '--disable-infobars' # Hides the infobar that Chrome displays for various notifications, like warnings when opening multiple tabs.
- '--disable-popup-blocking' # Disables the popup blocker, allowing all popups to appear. Useful in testing scenarios where popups are expected.
- '--disable-translate' # Disables the built-in translation feature, preventing Chrome from offering to translate pages.
- '--no-first-run' # Skips the initial setup screen that Chrome typically shows when running for the first time.
- '--test-type' # Disables certain security features and UI components that are unnecessary for automated testing, making Chrome more suitable for test environments.
# Provides integration with Drupal APIs.
Drupal\DrupalExtension:
blackbox: ~
api_driver: drupal
drush_driver: drush
drupal:
# Behat would run from within "build" dir.
drupal_root: web
drush:
# Behat would run from within "build" dir.
root: web
selectors:
message_selector: '.messages'
error_message_selector: '.messages.error'
success_message_selector: '.messages.status'
warning_message_selector: '.messages.warning'
# Capture HTML and JPG screenshots on demand and on failure.
DrevOps\BehatScreenshotExtension:
dir: '%paths.base%/.logs/screenshots'
purge: false # Change to 'true' (no quotes) to purge screenshots on each run.
DVDoug\Behat\CodeCoverage\Extension:
filter:
include:
directories:
'%paths.base%/src': ~
reports:
text:
showColors: true
showOnlySummary: true
html:
target: '%paths.base%/.logs/coverage/behat/.coverage-html'
cobertura:
target: '%paths.base%/.logs/coverage/behat/cobertura.xml'