@trevordsouzabrite/test-package 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/.claude/agents/playwright-test-generator.md +85 -0
  2. package/.claude/agents/playwright-test-healer.md +45 -0
  3. package/.claude/agents/playwright-test-planner.md +52 -0
  4. package/.claude/prompts/playwright-test-coverage.md +31 -0
  5. package/.claude/prompts/playwright-test-generate.md +12 -0
  6. package/.claude/prompts/playwright-test-heal.md +6 -0
  7. package/.claude/prompts/playwright-test-plan.md +12 -0
  8. package/.claude/settings.local.json +31 -0
  9. package/.github/agents/playwright-test-generator.agent.md +113 -0
  10. package/.github/agents/playwright-test-healer.agent.md +70 -0
  11. package/.github/agents/playwright-test-planner.agent.md +82 -0
  12. package/.github/prompts/playwright-test-coverage.prompt.md +31 -0
  13. package/.github/prompts/playwright-test-generate.prompt.md +12 -0
  14. package/.github/prompts/playwright-test-heal.prompt.md +6 -0
  15. package/.github/prompts/playwright-test-plan.prompt.md +9 -0
  16. package/.github/workflows/copilot-setup-steps.yml +34 -0
  17. package/.github/workflows/playwright-healer-agent.yml +140 -0
  18. package/.github/workflows/playwright.yml +40 -0
  19. package/.mcp.json +13 -0
  20. package/.vscode/extensions.json +6 -0
  21. package/.vscode/mcp.json +13 -0
  22. package/.vscode/settings.example.json +15 -0
  23. package/bitbucket-pipelines.yml +86 -0
  24. package/lib/WebActions.ts +107 -0
  25. package/package.json +33 -0
  26. package/pageRepository/ApplicantPage.ts +1171 -0
  27. package/pageRepository/CreateApplicationPage.ts +1736 -0
  28. package/playwright/.auth/user.json +0 -0
  29. package/specs/Applicant Create Application Page Test Plan.md +440 -0
  30. package/specs/Applicant Dashboard Page Test Plan.md +74 -0
  31. package/specs/Applicant Forgot Password Page Test Plan.md +112 -0
  32. package/specs/Applicant Help Page Test Plan.md +369 -0
  33. package/specs/Applicant Landing Page Test Plan.md +42 -0
  34. package/specs/Applicant Login Page Test Plan.md +116 -0
  35. package/specs/Applicant My Applications Page Test Plan.md +558 -0
  36. package/specs/Applicant My Medical Coverage Page Test Plan.md +689 -0
  37. package/specs/Applicant Privacy Policy Page Test Plan.md +196 -0
  38. package/specs/Applicant Resources Page Test Plan.md +107 -0
  39. package/specs/Applicant Self Register Page Test Plan.md +190 -0
  40. package/specs/README.md +3 -0
  41. package/test-data/Sample.png +0 -0
  42. package/test-data/createApplication/formData.json +42 -0
  43. package/test-data/createApplication/textMessages.json +52 -0
  44. package/test-data/forgotPassword/email.json +5 -0
  45. package/test-data/forgotPassword/textMessages.json +5 -0
  46. package/test-data/help/textContent.json +48 -0
  47. package/test-data/login/invalidUsernamePassword.json +4 -0
  48. package/test-data/login/textMessages.json +5 -0
  49. package/test-data/privacyPolicy/textContent.json +25 -0
  50. package/test-data/selfRegister/mailingAddressStates.json +21 -0
  51. package/test-data/selfRegister/registrationFieldData.json +13 -0
  52. package/test-data/selfRegister/suffix.json +3 -0
  53. package/test-data/selfRegister/textMessages.json +13 -0
  54. package/test-data/test-data.zip +0 -0
  55. package/tests/ApplicantCreateApplicationPageTest.spec.ts +1452 -0
  56. package/tests/ApplicantDashboardPageTest.spec.ts +74 -0
  57. package/tests/ApplicantForgotPasswordPageTest.spec.ts +88 -0
  58. package/tests/ApplicantHelpPageTest.spec.ts +468 -0
  59. package/tests/ApplicantLandingPageTest.spec.ts +33 -0
  60. package/tests/ApplicantLoginPageTest.spec.ts +117 -0
  61. package/tests/ApplicantMyApplicationsPageTest.spec.ts +516 -0
  62. package/tests/ApplicantMyMedicalCoveragePageTest.spec.ts +470 -0
  63. package/tests/ApplicantPrivacyPolicyPageTest.spec.ts +188 -0
  64. package/tests/ApplicantResourcesPageTest.spec.ts +117 -0
  65. package/tests/ApplicantSelfRegisterPageTest.spec.ts +254 -0
  66. package/tests/auth.setup.ts +42 -0
  67. package/tests/authState.ts +15 -0
  68. package/tests/example.spec.ts +18 -0
  69. package/tests/seed.spec.ts +7 -0
@@ -0,0 +1,4 @@
1
+ {
2
+ "username": "testing",
3
+ "password": "testing"
4
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "loginText": " Log in to access your account. New user? Click \"Self Register.\"",
3
+ "requiredFieldError": "Please fill out this field.",
4
+ "incorrectUsernamePasswordError": "Login failed. Please check your credentials and try again."
5
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "documentTitle": "Privacy Policy",
3
+ "htmlLang": "en-US",
4
+ "logoAlt": "Logo",
5
+ "h1Title": "Polk County Privacy Policy",
6
+ "h2RegistrationInfo": "Registration Information",
7
+ "h2HowPolkUses": "How Polk County Uses Your Information",
8
+ "firstParagraph": "We require some basic information at the time of account creation. When you create your own username and password, we ask you for a valid email address. The Website or Service may also request your phone number for receiving SMS/MMS messages.",
9
+ "smsNoticeBoldLabel": "SMS Privacy Notice:",
10
+ "smsNoticeParagraph": "Mobile information will not be shared with third parties or affiliates for marketing or promotional purposes. All the above categories exclude text messaging originator opt-in data and consent; this information will not be shared with any third parties.",
11
+ "howPolkIntroParagraph": "We may use your information for the following purposes:",
12
+ "listItemsCount": 9,
13
+ "listItems": [
14
+ "We use your Registration Information to create your account and provide you the Service.",
15
+ "We use your User Personal Information, specifically your username, to identify you on the Service.",
16
+ "We use your Profile Information to fill out your account profile and to share that profile with other users.",
17
+ "We use your email address and phone number to communicate with you.",
18
+ "We use User Personal Information to respond to support requests.",
19
+ "We may use User Personal Information to invite you to take part in surveys, beta programs, or other research projects, subject to your consent where necessary.",
20
+ "We use Usage Information and Device Information to better understand how our users use the Service and to make improvements.",
21
+ "We may use your User Personal Information if it is necessary for security purposes or to investigate possible fraud or attempts to harm Polk County or our users.",
22
+ "We may use your User Personal Information to comply with our legal obligations, protect our intellectual property, and enforce our Terms of Service."
23
+ ],
24
+ "closingParagraph": "We limit our use of your User Personal Information to the purposes listed in this Privacy Policy. If we need to use your User Personal Information for other purposes, we will ask for your permission first. You can always see what information we have, how we are using it, and what permissions you have given us."
25
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "mailingAddressStateOptions": [
3
+ "--None--", "Alabama", "Alaska",
4
+ "Arizona", "Arkansas", "California",
5
+ "Colorado", "Connecticut", "Delaware",
6
+ "Florida", "Georgia", "Hawaii",
7
+ "Idaho", "Illinois", "Indiana",
8
+ "Iowa", "Kansas", "Kentucky",
9
+ "Louisiana", "Maine", "Maryland",
10
+ "Massachusetts", "Michigan", "Minnesota",
11
+ "Mississippi", "Missouri", "Montana",
12
+ "Nebraska", "Nevada", "New Hampshire",
13
+ "New Jersey", "New Mexico", "New York",
14
+ "North Carolina", "North Dakota", "Ohio",
15
+ "Oklahoma", "Oregon", "Pennsylvania",
16
+ "Rhode Island", "South Carolina", "South Dakota",
17
+ "Tennessee", "Texas", "Utah",
18
+ "Vermont", "Virginia", "Washington",
19
+ "West Virginia", "Wisconsin", "Wyoming"
20
+ ]
21
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "firstName": "John",
3
+ "lastName": "Doe",
4
+ "validEmail": "test@gmail.com",
5
+ "physicalAddress": "2135 Marshall Edwards Dr.",
6
+ "mailingAddress": "14919 Fishhawk Preserve Dr",
7
+ "errorEmail": "notanemail",
8
+ "errorStateAddress": "Houston Heights",
9
+ "errorZIPAddress": "Orlando Post",
10
+ "longFirstName": "TESTTESTTESTESTESTESTESTEST",
11
+ "longLastName": "TESTTESTTESTESTESTESTESTEST",
12
+ "longEmail": "TESTTESTTESTESTESTESTESTEST@gmail.com"
13
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "suffixOptions": ["", "Jr.", "Sr.", "II", "III", "IV", "V"]
3
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "agreementText": "By registering, you acknowledge that you are voluntarily providing demographic information including your name, date of birth, email address, and physical/mailing address for use in a shared database system accessed by participating partner agencies. This information will be viewable and searchable only by authorized users for the purpose of coordinating services and verifying eligibility. You understand that you will be required to sign a formal consent form confirming your agreement before your application can be submitted. This authorization remains in effect until withdrawn in writing or upon death of the primary applicant. You may withdraw your consent at any time by submitting written notice to the Shared Data Information System Administrator at: 2135 Marshall Edwards Drive, Bartow, FL 33830.",
3
+ "requiredFieldError": "This field is required",
4
+ "physicalAddressFieldError": "Physical: Street is required.",
5
+ "mailingAddressFieldError": "Mailing: Street is required.",
6
+ "invalidEmailError": "Enter a valid email address, such as name@email.com.",
7
+ "physicalAddressStateError": "Physical must be in Florida, US.",
8
+ "mailingAddressStateError": "Mailing must be in Florida, US.",
9
+ "mailingAddressZIPError": "Mailing: ZIP is required.",
10
+ "successMessage": "Thank you for completing your registration. You will receive an email shortly containing a link to access the Polk HealthCare Plan Applicant Portal. This message will include your username and a link to reset your password. You will need to complete the password reset process before logging in for the first time. If you do not receive the email within a few minutes, please check your spam or junk folder.",
11
+ "duplicateRegistrationError": "Error: Client already exists please contact Polk Client Membership services 800-xxx-xxxx.",
12
+ "longNamesError": "Error :Insert failed. First exception on row 0; first error: STRING_TOO_LONG, Nickname: data value too large:"
13
+ }
Binary file