/* 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" : false, "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 } }, "chrome" : { "desiredCapabilities": { "browserName": "chrome" } }, "edge" : { "desiredCapabilities": { "browserName": "MicrosoftEdge" } } } };