driver.switchTo().frame(driver.findElement(By.tagName("iframe")));
WebElement element = driver.findElement(By.cssSelector("button..c-schedule-story-button"));
element.click();
Its inside an iframe , you have to switch to that first
you have to switch to defaultcontent if you want to interact again with outside elements
driver.switchTo().defaultContent()
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…