1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* This file is part of AToMPM - A Tool for Multi-Paradigm Modelling
- * Copyright 2011 by the AToMPM team
- * See COPYING, COPYING.lesser, and README.md for full details
- */
- const chromedriver = require("chromedriver");
- const selenium_server = require("selenium-server");
- module.exports = {
- "src_folders" : ["tests"],
- "output_folder" : false,
- "custom_commands_path" : "",
- "custom_assertions_path" : "",
- "page_objects_path" : "",
- "globals_path" : "",
- "selenium" : {
- "start_process" : true,
- "server_path" : selenium_server.path,
- "log_path" : "",
- "port" : 4444,
- "cli_args" : {
- "webdriver.chrome.driver" : chromedriver.path,
- "webdriver.gecko.driver" : "",
- "webdriver.edge.driver" : ""
- }
- },
- "test_settings" : {
- "default" : {
- "launch_url" : "http://localhost",
- "selenium_port" : 4444,
- "selenium_host" : "localhost",
- "silent": true,
- "screenshots" : {
- "enabled" : false,
- "path" : ""
- },
- "globals": {
- "waitForConditionTimeout": 5000 // sometimes internet is slow so wait.
- },
- "desiredCapabilities": {
- "browserName": "chrome",
- "javascriptEnabled": true,
- "marionette": true,
- "chromeOptions": {
- "args" : ["--no-sandbox"],
- "w3c": false
- },
- }
- },
- "chrome" : {
- "desiredCapabilities": {
- "browserName": "chrome"
- }
- },
- "edge" : {
- "desiredCapabilities": {
- "browserName": "MicrosoftEdge"
- }
- }
- }
- };
|