feat(TestAutomation) Harass Calculator tests and Search box style fix

This commit is contained in:
2022-04-25 16:43:45 -04:00
parent 43d7391df2
commit 7c10149ff3
14 changed files with 445 additions and 98 deletions
+13
View File
@@ -0,0 +1,13 @@
using OpenQA.Selenium;
namespace TestAutomation.Pages;
public class BasePage {
public Website website;
public BasePage(Website website) {
this.website = website;
}
}