-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbehat.yml
More file actions
37 lines (36 loc) · 1.15 KB
/
behat.yml
File metadata and controls
37 lines (36 loc) · 1.15 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
imports:
# settings specific to a particular machine
- ./behat.local.yml
default:
suites:
default:
contexts:
- App\Tests\Behat\FeatureContext
extensions:
FriendsOfBehat\SymfonyExtension:
bootstrap: tests/bootstrap.php
kernel:
class: App\Kernel
Behat\MinkExtension:
default_session: symfony
javascript_session: javascript
sessions:
symfony:
symfony: ~
javascript:
# Selenium 4 needs W3C sessions; behat/mink-selenium2-driver is not compatible (see minkphp/MinkSelenium2Driver#395).
webdriver_classic:
browser: chrome
capabilities:
# Mink merges Sauce-style "tags" by default; clear so Selenium Grid does not reject the session.
tags: []
acceptInsecureCerts: true
goog:chromeOptions:
excludeSwitches:
- enable-automation
args:
- '--headless=new'
- '--no-sandbox'
- '--disable-dev-shm-usage'
- '--disable-gpu'
- '--window-size=1920,1080'