.Net_Test/LukanNUnitProject/LukanPOM/Tests/AcceptCookie.cs

36 lines
699 B
C#
Raw Permalink Normal View History

2023-08-24 11:25:35 +00:00
using System;
using OpenQA.Selenium;
using OpenQA.Selenium.Remote;
using NUnit.Framework;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OpenQA.Selenium.Support.UI;
using SeleniumExtras.PageObjects;
using System.Net;
using WebDriverManager;
using WebDriverManager.DriverConfigs.Impl;
using OpenQA.Selenium.Chrome;
using LukanPOM.PageObjects;
2023-08-24 15:12:11 +00:00
using LukanPOM.Common;
2023-08-24 07:11:04 +00:00
2023-08-24 11:25:35 +00:00
namespace LukanPOM.Tests
2023-08-24 07:11:04 +00:00
{
2023-08-24 15:12:11 +00:00
2023-08-31 19:26:24 +00:00
2023-09-01 19:29:09 +00:00
internal class AcceptCookie : TestBase
2023-08-24 11:25:35 +00:00
{
2023-08-24 15:12:11 +00:00
[Test]
public void AcceptCookieTest()
2023-08-24 11:25:35 +00:00
{
2023-08-24 15:12:11 +00:00
2023-08-25 05:41:57 +00:00
Home.AcceptCookie();
2023-08-24 11:25:35 +00:00
}
2023-08-28 20:05:11 +00:00
}
2023-08-24 07:11:04 +00:00
}