Example usage for org.openqa.selenium WebElement click

List of usage examples for org.openqa.selenium WebElement click

Introduction

In this page you can find the example usage for org.openqa.selenium WebElement click.

Prototype

void click();

Source Link

Document

Click this element.

Usage

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.author.AuthorListPage.java

License:Open Source License

public void deleteAuthor(Integer index) {
    WebElement deleteButton = findDeleteBtnByIndex(index);
    deleteButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.author.AuthorListPage.java

License:Open Source License

public void viewAuthorDetails(Integer index) {
    WebElement detailsButton = findDetailsBtnByIndex(index);
    detailsButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.book.BookListPage.java

License:Open Source License

public void editBook(Integer index) {
    WebElement editButton = findEditBtnByIndex(index);
    editButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.book.BookListPage.java

License:Open Source License

public void deleteBook(Integer index) {
    WebElement deleteButton = findDeleteBtnByIndex(index);
    deleteButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.book.BookListPage.java

License:Open Source License

public void viewBookDetails(Integer index) {
    WebElement detailsButton = findDetailsBtnByIndex(index);
    detailsButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.editorial.EditorialListPage.java

License:Open Source License

public void editEditorial(Integer index) {
    WebElement editButton = findEditBtnByIndex(index);
    editButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.editorial.EditorialListPage.java

License:Open Source License

public void deleteEditorial(Integer index) {
    WebElement deleteButton = findDeleteBtnByIndex(index);
    deleteButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.editorial.EditorialListPage.java

License:Open Source License

public void viewEditorialDetails(Integer index) {
    WebElement detailsButton = findDetailsBtnByIndex(index);
    detailsButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.review.ReviewListPage.java

License:Open Source License

public void editReview(Integer index) {
    WebElement editButton = findEditBtnByIndex(index);
    editButton.click();
}

From source file:co.edu.uniandes.csw.bookstore.tests.selenium.pages.review.ReviewListPage.java

License:Open Source License

public void deleteReview(Integer index) {
    WebElement deleteButton = findDeleteBtnByIndex(index);
    deleteButton.click();
}