Please tell me if there is an application ( https://testing.shipnext.com/ ), it displays a modal window at the entrance. It is necessary to enter the login and password, then the site will open. Tried the following code ... but does not help

Alert alert; @BeforeClass public static void setup(){ System.setProperty("webdriver.chrome.driver", "/home/qa-1/IdeaProjects/chromedriver"); driver = new ChromeDriver(); loginPage = new LoginPage(driver); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); driver.get("https://testing.shipnext.com/"); } @Test public void alertText(){ alert = driver.switchTo().alert(); alert.sendKeys("myLogin"); 

    0