Best Practices for Implementing E2E (End-to-End) UI Tests

UI Testing

LoadFocus – is a easy to use cloud testing tool, and you don’t need any setup, it runs from the browser. It helps you understand better your Website’s and WebServices’ performance and find potential bottleneck before your customers do. Run a free website speed test today. Writing UI tests that are resilient and easy maintainable… Read more »

How to Click on Element with Puppeteer and Chrome

Puppeteer UI Testing

LoadFocus – is a easy to use cloud testing tool, and you don’t need any setup, it runs from the browser. It helps you understand better your Website’s and WebServices’ performance and find potential bottleneck before your customers do. Run a free website speed test today. Using Puppeteer to interact with the UI elements from… Read more »

How to Click a Link by Text in Selenium WebDriver Java

JAVA

Here is how to click a link by text with Selenium WebDriver in Java using the built in WebDriver helper methods or by XPath: Click link by full text using Selenium WebDriver WebElement linkByText = driver.findElement(By.linkText(“My Link”)); linkByText.click();