I have the test below but I am getting a strange error:
Error: Object with guid response@eb68676bb09dd7e5c98c732c9c551c20 was not bound in the connection
it('should have readonly', async({ page }) => {
const textLookUps = [
'Starting patient ID number',
'Increment by',
'Append to start',
'Append to end',
'No',
'Identifier length'
];
for (const text of textLookUps) {
const el = page.getByText(text, { exact: true });
await expect(el).toBeVisible();
await expect(el).toBeDisabled();
}
This thread is trying to answer question "Why am I getting an error 'Object with guid response@eb68676bb09dd7e5c98c732c9c551c20 was not bound in the connection' while running a test on my Angular 16 app using Playwright?"
Rayrun is a community for QA engineers. I am constantly looking for new ways to add value to people learning Playwright and other browser automation frameworks. If you have feedback, email [email protected].