Skip to content

Commit

Permalink
Updating html element in add-custom-network e2e test for the text wra…
Browse files Browse the repository at this point in the history
…pper in PickerNetwork from a p tag to a span tag
  • Loading branch information
georgewrmarshall committed Oct 11, 2023
1 parent 649bbd3 commit f71e092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/tests/add-custom-network.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ describe('Custom network', function () {
});
// verify network switched
const networkDisplayed = await driver.findElement({
tag: 'p',
tag: 'span',
text: 'Arbitrum One',
});
assert.equal(
Expand Down Expand Up @@ -546,7 +546,7 @@ describe('Custom network', function () {

const arbitrumNetwork = await driver.clickElement({
text: 'Arbitrum One',
tag: 'div',
tag: 'span',
});

// Click first Delete button
Expand Down

0 comments on commit f71e092

Please sign in to comment.