using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using NUnit.Framework;
public class TestFixture
{
WebDriver driver;
[SetUp]
public void SetUp()
driver = new ChromeDriver();
}
[Test]
public void Test()
//Write a test that navigates to cors-anywhere.herokuapp.com/corsdemo
//clicks the "Request access" button and asserts the access message is visible only after clicking.