Skip to content

Commit

Permalink
fix: new variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Mar 29, 2024
1 parent 9ba81a6 commit f39e293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/integration-tests/tests/ui/transactions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ test("Check on BE Transfer ETH token via Portal", async ({ page }) => {
elementTo = await page.locator(selector).first();

selector = `text=${Values.txSumETH}`;
element = await page.locator(selector).first();
elementTxAmount = await page.locator(selector).first();

//Check tx Hash
await expect(elementTx).toBeVisible(config.extraTimeout);
Expand All @@ -71,7 +71,7 @@ test("Check on BE Transfer ETH token via Portal", async ({ page }) => {
//Check address To
await expect(elementTo).toBeVisible(config.extraTimeout);
//Check transaction Amount
await expect(element).toBeVisible(config.extraTimeout);
await expect(elementTxAmount).toBeVisible(config.extraTimeout);
});

//@id1680
Expand Down

0 comments on commit f39e293

Please sign in to comment.