Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,16 @@ jobs:

- name: Start Practice Software Testing with Docker Compose
working-directory: practice-repo
run: docker compose up -d
run: docker compose -f docker-compose.yml up -d

- name: Sleep for 60 seconds
run: sleep 60s
shell: bash

- name: Create and Seed Database
working-directory: practice-repo
run: |
docker compose exec laravel-api php artisan migrate:fresh --seed

- name: Install Chrome
uses: browser-actions/setup-chrome@latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public Iterator<RegistrationData> getValidRegistrationData () {

@Test (dataProvider = "getValidRegistrationData")
public void testRegistrationPasswordAlert (final RegistrationData registrationData) {
//this.driver.get ("http://localhost:4200/");
this.driver.get ("https://practicesoftwaretesting.com/auth/register");
this.driver.get ("http://localhost:4200/");
//this.driver.get ("https://practicesoftwaretesting.com/auth/register");

HomePage homePage = new HomePage (driver);
LoginPage loginPage = homePage.navigateToLoginPage ();
Expand Down
Loading