Code Monkey home page Code Monkey logo

Comments (4)

christophe-gamned avatar christophe-gamned commented on June 29, 2024 3

@ankur-lt accord my last tests executions, both snippets (your and mine) work.

from playwright-sample.

ankur-lt avatar ankur-lt commented on June 29, 2024 1

Hello @christophe-gamned and @iamarbabhussain ,
You are using the functions exposed by @playwright/test runner, which is running on the local machine while the test is running on a remote machine. Can you try using the below code snippet to make this work:

const { test } = require('../lambdatest-setup')
const { expect } = require('@playwright/test')
const state = require('../storageState.json')

test.use({ storageState: state });
test.only('logout', async ({ page }) => {
...
})

from playwright-sample.

christophe-gamned avatar christophe-gamned commented on June 29, 2024

Hello,
I have the same problem. Here a simple snippet to explain issue.

`
[...]
const { expect } = require('@playwright/test');
const { test } = require('../lambdatest-setup')

test.use({ storageState: 'storageState.json' });

test('logout', async ({ page }) => {
await expect(page.getByRole('link', { name: 'Login' }).count()).toEqual(0)
await expect(page.getByRole('link', { name: 'Hi ! You are logged' }).first()).toBeVisible();
await page.getByRole('link', { name: 'Hi ! You are logged' }).first().click();
await page.getByRole('link', { name: 'Logout' }).click();
await expect(page.getByRole('link', { name: 'Login' })).toBeVisible();
});

[...]
`

from playwright-sample.

vipulkv avatar vipulkv commented on June 29, 2024

@ankur-lt 👍

from playwright-sample.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.