JavaScript

Playwright Reload Page
Read More

Playwright Reload Page

To refresh a page in Playwright, we can use the page.reload() method, which will reload the current page. This method reloads the current page in the same way as if the user had triggered a browser refresh.

Table of Contents

  1. Syntax
  2. Example
  3. Video Tutorial

Syntax

await page.reload();
await page.reload(options);

Arguments

Install Appium with WebDriverIO
Read More

Install Appium with WebDriverIO

In this article we will install Appium with WebDriverIO, TypeScript and Cucumber.

Step 1: Navigate to the directory where you want to create the project. My current directory is

/Users/tarungoswami/git

Step 2: Create new directory. I am creating appiumdemo1.

mkdir appiumdemo1

Step 3: Open created directory or folder with Visual Studio Code. You still have a choice to continue on command line.

Playwright Test Timeout
Read More

Playwright Test Timeout

The Playwright Test framework provides a range of timeouts. These include the Test Timeout, Expect Timeout, Global Timeout, and several low-level timeouts such as actions, navigation, fixtures, and before and after all timeout.

In this article, we will only discuss a few essential aspects of test timeout.