This commit is contained in:
2025-07-06 21:15:19 +09:00
parent d2018c0143
commit eeb3c2f845
6 changed files with 216 additions and 110 deletions

View File

@@ -1,3 +1,4 @@
using OpenQA.Selenium.Support.UI;
using System.Threading.Tasks;
namespace BokBonCheck
@@ -7,5 +8,9 @@ namespace BokBonCheck
string SiteName { get; }
string SiteUrl { get; }
Task<BookSearchResult> SearchAsync(string searchTerm);
void StartDriver();
void StopDriver();
Task WaitForPageChange(WebDriverWait wait);
}
}