Мне нужно нажать на первую кнопку уведомления браузера, которое появляется после нажатия на кнопку «Удалить список желаний».Эта кнопка, как показано ниже;
<a href="/account/wishlistupdate?mainAction=delete&wishlistId=2547474" class="btn btn-danger btn-sm" onclick="return confirm('This action cannot be undone. Are you sure you want to delete this wishlist?')" style="" xpath="1">Delete wishlist</a>
При нажатии этой кнопки открывается уведомление браузера.
Я пробовал alert.accept (), но у меня не работает.
public HomePage editWishlist(){
click(edit_button); // By edit_button = By.xpath("//div[@class='btn-edit-text']");
click(deleteWishlist_button); // By deleteWishlist_button = By.linkText("Delete wishlist");
try {
Thread.sleep(1500);
} catch(InterruptedException e) {
System.out.println("got interrupted!");
}
Alert alert = driver.switchTo().alert();
alert.accept();
return this;
}
Как я могусправиться с этим?