{"id":22389852,"url":"https://github.com/entando/entando-core-qe","last_synced_at":"2025-08-23T09:07:29.502Z","repository":{"id":80028238,"uuid":"266049126","full_name":"entando/entando-core-qe","owner":"entando","description":"All the automated acceptance tests that run against the Entando Core as a whole.","archived":false,"fork":false,"pushed_at":"2020-05-25T17:21:33.000Z","size":566,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-08-23T09:04:49.206Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/entando.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"licenseheader.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-22T07:41:28.000Z","updated_at":"2020-05-25T08:51:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"7a62f84a-792d-4cf2-af12-002dba67e7d7","html_url":"https://github.com/entando/entando-core-qe","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/entando/entando-core-qe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/entando%2Fentando-core-qe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/entando%2Fentando-core-qe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/entando%2Fentando-core-qe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/entando%2Fentando-core-qe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/entando","download_url":"https://codeload.github.com/entando/entando-core-qe/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/entando%2Fentando-core-qe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271746302,"owners_count":24813556,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-05T03:13:25.814Z","updated_at":"2025-08-23T09:07:29.333Z","avatar_url":"https://github.com/entando.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Selenium_APPBUILDER\n\nThis Maven project has been developed to perform automatic functional testing on the Entando AppBuilder application. \n\n\n\n__Prerequisites__\n\n* Java, Maven, Selenium, Google Chrome and ChromeDriver installed on your machine\n\nBelow the versions we worked with:\n\n### Java version\n\nOracle Corporation Java 1.8.0_181\n\n### Maven version\n\nApache Maven 3.3.9\n\n### Selenium version\n\nSelenium Server Standalone 3.14.0\n\n### ChromeDriver Version\n\nChromeDriver 2.40.565383\n\n### Google Chrome Version\n\nGoogle Chrome 68.0.3440.106\n\nREMEMBER: If you use a major release of ChromeDriver (ex: x.40) you need a paired release of Google Chrome (ex: 68.x) to be able to run the tests.\nFor more information see this link: http://chromedriver.chromium.org/downloads\n\n\n__How to set tests options__\n\n• Set the landing page\n1) Open the class DTLoginPage in the package `org.entando.selenium.pages`\n2) Find the class constructor method\n3) Change the parameter of driver.get(\"http://localhost:8080/myApp/\") to whatever suits your needs\n\n• Set the username and password\n1) Open the class FunctionalTestBase in the package `org.entando.selenium.utils`\n2) Find the USERNAME and PASSWORD parameters\n3) Change the parameter values\n\n• Set debug mode (to show some message about the execution of the test and to identify unexpected errors in the tests)\n1) Open the class FunctionalTestBase in the package `org.entando.selenium.utils`\n2) Find the method setUp()\n3) Change the parameter of `Logger.getGlobal().setLevel(Level.OFF)`\nYou can use Level.OFF to disable debug mode or `Level.INFO` if enable it\n\n• Set headless mode (a solution to run tests without opening the browser)\n1) Open the class AppConfig in the package `org.entando.selenium.utils`\n2) Find the local variable `HEADLESS`\n3) Set it to true if you would like you enable \"headless mode\" or false to disable it\n\n\n• Set browserstack mode (a solution to run tests on browserstack (TM))\n1) Open the class AppConfig in the package `org.entando.selenium.utils`\n2) Find the local variable `BROWSERSTACK`\n3) Set it to true if you would like to enable  the \"browserstack mode\" or false to disable it\n4) In order to be able to use Browserstack (TM) you need to have a valid account and to provide the correct browserstack (TM) credentials in the AppConfig class. \n\nNote: By default the BROWSERSTACK variable is set to true.\n\n\n\n__Before run the tests__\n\nIt's essential to create the necessary environment for the tests to work properly.\nThis involves the creation of various elements within the application that will be used during the tests execution.\nTo automate this operation you can run the Environment Checker class as if it were a normal test.\n\nHow to run Environment Checker:\n1) Open a terminal in the folder that contains the pom.xml file\n2) Type the command: \n`mvn -Dtest=*EnvironmentChecker.java test`\nWait the end of this process.\n\nMoreover it's essential to create a text file in your local file system like `seleniumTest-File.txt` and set file name and path in the FileBrowserTestBase.java (located in the package: org.entando.selenium.testHelpers): it's necessary to run DTFileBrowserUploadFileTest.java\n\n\n\n__How to run the test__\n\n1) Open a terminal in the folder that contains pom.xml file\n2) Should you prefer to run ALL tests type the command:\n`mvn test`\nTo run a specific test type the command:\n`mvn -Dtest=SpecificTest.java test`\n\n\nThe tests can of course been run from your favorite IDE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fentando%2Fentando-core-qe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fentando%2Fentando-core-qe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fentando%2Fentando-core-qe/lists"}