12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* 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"
- }
- }
- }
- };
|