Skip to content

Commit

Permalink
Merge pull request #31 from bcgov/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
ychung-mot authored Mar 25, 2024
2 parents dc053e0 + 69b44ed commit 4e44b0a
Show file tree
Hide file tree
Showing 121 changed files with 6,353 additions and 930 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ node_modules
mnt
note
**/Properties/launchSettings.json
UITest
secrets
.terraform
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,27 @@ When I navigate to the delisting request feature
#Input Form
Then I should be presented with an input form that includes fields for the listing URL

And I should be presented with a field to select which platform to send the request to
And I Should be Presented with an Input form that Lists requests Initiated By

And I should be presented with a field to select which platform to send the request to

And I should see an optional field for adding a LG staff user email address to be copied on the email

#Initiated By

When Selecting the LG for Initiated By

Then The system should present a list of available LG options to populate the field

#ListingIDField

When Entering the listing ID "0"

Then The system should validate the ID is a number

#ListingURLField

When Entering the listing URL "ListingURL"
When Entering the listing URL "http://listingURL.com"

Then The system should validate the URL format and ensure it is a valid link to the property listing

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ And I should be presented with a field to select which platform to send the warn

And I should be presented with a dropdown menu to select reason for delisting

And I should see an optional field for Listing ID

And I should see an optional field for adding a LG staff user email address to be copied on the email

#ListingURLField
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
using BoDi;
using OpenQA.Selenium;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
using UITest.TestDriver;

namespace SpecFlowProjectBDD.Hooks
Expand All @@ -24,6 +17,7 @@ public SeleniumSpecFlowHooks(IObjectContainer container)
public void SetupDrivers()
{
SeleniumDriver webDriver = new SeleniumDriver(SeleniumDriver.DRIVERTYPE.CHROME);
webDriver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(5);

_Container.RegisterInstanceAs<SeleniumDriver>(webDriver);
}
Expand Down
Loading

0 comments on commit 4e44b0a

Please sign in to comment.