Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: 8928 UI revamp issues#8940

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
bjp232004 merged 59 commits intomainfrom8928-ui-revamp-issues
Nov 3, 2025
Merged

fix: 8928 UI revamp issues#8940

bjp232004 merged 59 commits intomainfrom8928-ui-revamp-issues
Nov 3, 2025

Conversation

@bjp232004
Copy link
Contributor

No description provided.

greptile-apps[bot] reacted with thumbs up emoji
ktx-vaidehiand others added24 commitsNovember 3, 2025 11:44
@bjp232004bjp232004 linked an issueNov 3, 2025 that may beclosed by this pull request
Copy link
Contributor

@greptile-appsgreptile-appsbot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment methodhere.

@github-actionsgithub-actionsbot added the ☢️ BugSomething isn't working labelNov 3, 2025
@github-actions
Copy link
Contributor

Failed to generate code suggestions for PR

@testdino-playwright-reporter

⚠️ Test Run Unstable


Author:ktx-vaidehi | Branch:8928-ui-revamp-issues | Commit:c5148c5

Testdino Test Results

StatusTotalPassedFailedSkippedFlakyPass RateDuration
5 tests failed376346521492%5m 48s

Test Failure Analysis

  1. serviceAccount.spec.js: All tests fail due to timeout errors waiting for a button click
    1. Service Account for API access Service Account Created and refresh token: Timeout waiting for button with text 'close'.
    2. Service Account for API access Service Account Created and updated details: Timeout waiting for button with text 'close'.
    3. Service Account for API access Service Account Created and not deleted if cancel clicked: Timeout waiting for button with text 'close'.

Root Cause Analysis

  • The changes iniamPage.js may have affected the visibility or availability of the 'close' button.

Recommended Actions

  1. Investigate the rendering logic of the 'close' button iniamPage.js to ensure it is present when expected.
  2. Increase the timeout duration in the clickServiceAccountPopUpClosed method to accommodate slow rendering.
  3. Add explicit waits or checks to confirm the button's visibility before attempting to click it.

View Detailed Results

@testdino-playwright-reporter

⚠️ Test Run Unstable


Author:ktx-vaidehi | Branch:8928-ui-revamp-issues | Commit:c5148c5

Testdino Test Results

StatusTotalPassedFailedSkippedFlakyPass RateDuration
5 tests failed376346521492%5m 49s

Test Failure Analysis

  1. serviceAccount.spec.js: All tests fail due to timeout errors on button clicks
    1. Service Account for API access Service Account Created and refresh token: Locator timeout waiting for 'close' button click.
    2. Service Account for API access Service Account Created and updated details: Locator timeout waiting for 'close' button click.
    3. Service Account for API access Service Account Created and not deleted if cancel clicked: Locator timeout waiting for 'close' button click.

Root Cause Analysis

  • The failures are likely due to the locator for the 'close' button not being available or visible in the UI, as indicated by the timeout errors in the tests.

Recommended Actions

  1. Investigate the visibility and availability of the 'close' button iniamPage.js to ensure it is present before attempting to click. 2. Increase the timeout duration in the clickServiceAccountPopUpClosed method if the UI is slow to respond. 3. Add explicit waits or checks to confirm the button is ready for interaction before clicking.

View Detailed Results

@testdino-playwright-reporter

⚠️ Test Run Unstable


Author:bjp232004 | Branch:8928-ui-revamp-issues | Commit:e3cac3f

Testdino Test Results

StatusTotalPassedFailedSkippedFlakyPass RateDuration
5 tests failed290264519291%3m 23s

Test Failure Analysis

  1. serviceAccount.spec.js: All tests fail due to strict mode violation with element locators
    1. Service Account for API access Service Account Created and refresh token: Locator resolved to multiple elements, causing click failure.
    2. Service Account for API access Service Account Created and updated details: Similar issue with multiple elements for 'cancel' button click.
    3. Service Account for API access Service Account Created and not deleted if cancel clicked: Same locator issue with multiple elements preventing action.

Root Cause Analysis

  • The failures are likely due to changes in the element structure or attributes in the UI, affecting the locator's ability to identify unique elements.

Recommended Actions

  1. Update the locator in the clickServiceAccountPopUpClosed method in iamPage.js to ensure it targets a unique element. 2. Consider adding more specific filters or using unique attributes to differentiate the buttons in the tests. 3. Review recent changes in the UI components to confirm if the button structure has changed, which may require test adjustments.

View Detailed Results

@testdino-playwright-reporter

⚠️ Test Run Unstable


Author:bjp232004 | Branch:8928-ui-revamp-issues | Commit:e3cac3f

Testdino Test Results

StatusTotalPassedFailedSkippedFlakyPass RateDuration
5 tests failed363335521292%4m 32s

Test Failure Analysis

  1. serviceAccount.spec.js: Element not found errors due to multiple matching elements
    1. Service Account for API access Service Account Created and refresh token: Locator resolved to 2 elements, causing click failure.
    2. Service Account for API access Service Account Created and updated details: Same issue with multiple elements found for 'cancel'.
    3. Service Account for API access Service Account Created and not deleted if cancel clicked: Click failed due to multiple elements matching 'cancel'.

Root Cause Analysis

  • The failures are linked to the code change in iamPage.js where the locator was modified to filter for 'cancel', leading to multiple matches.

Recommended Actions

  1. Modify the locator in iamPage.js to be more specific, e.g., use a unique identifier like data-test attribute.
  2. Review the button elements in the UI to ensure only one matches the 'cancel' text.
  3. Implement additional checks in the test to confirm the visibility of the intended button before clicking.

View Detailed Results

@testdino-playwright-reporter

⚠️ Test Run Unstable


Author:bjp232004 | Branch:8928-ui-revamp-issues | Commit:e3cac3f

Testdino Test Results

StatusTotalPassedFailedSkippedFlakyPass RateDuration
5 tests failed376347521392%4m 32s

Test Failure Analysis

  1. serviceAccount.spec.js: All tests fail due to strict mode violations from ambiguous button locators
    1. Service Account for API access Service Account Created and refresh token: Locator resolved to multiple elements for 'cancel' button.
    2. Service Account for API access Service Account Created and updated details: Same issue with ambiguous 'cancel' button locator.
    3. Service Account for API access Service Account Created and not deleted if cancel clicked: Again, locator resolves to multiple 'cancel' buttons.

Root Cause Analysis

  • The change iniamPage.js to filter buttons by 'cancel' caused ambiguity due to multiple matching elements.

Recommended Actions

  1. Update the locator iniamPage.js to be more specific, e.g., usedata-test attributes for unique identification.
  2. Implement a check to ensure only one 'cancel' button is present before attempting to click.
  3. Review the UI to ensure that only one 'cancel' button is rendered in the relevant context.

View Detailed Results

@testdino-playwright-reporter

⚠️ Test Run Unstable


Author:bjp232004 | Branch:8928-ui-revamp-issues | Commit:e3cac3f

Testdino Test Results

StatusTotalPassedFailedSkippedFlakyPass RateDuration
5 tests failed376348521293%4m 32s

Test Failure Analysis

  1. serviceAccount.spec.js: All tests fail due to strict mode violations from ambiguous button locators
    1. Service Account for API access Service Account Created and refresh token: Locator resolved to multiple elements for 'cancel' button.
    2. Service Account for API access Service Account Created and updated details: Same issue with ambiguous 'cancel' button locator.
    3. Service Account for API access Service Account Created and not deleted if cancel clicked: Again, multiple elements found for 'cancel' button.

Root Cause Analysis

  • The code change in iamPage.js altered the button locator from 'close' to 'cancel', causing conflicts with multiple elements matching the criteria.

Recommended Actions

  1. Update the locator in iamPage.js to be more specific, e.g., use data-test attributes. 2. Ensure that the button with text 'cancel' is unique on the page to avoid strict mode violations. 3. Review the UI to confirm that only one 'cancel' button exists in the relevant context.

View Detailed Results

@testdino-playwright-reporter

⚠️ Test Run Unstable


Author:bjp232004 | Branch:8928-ui-revamp-issues | Commit:4906da5

Testdino Test Results

StatusTotalPassedFailedSkippedFlakyPass RateDuration
All tests passed376351021493%4m 32s

View Detailed Results

@bjp232004bjp232004 merged commit348ec69 intomainNov 3, 2025
32 checks passed
@bjp232004bjp232004 deleted the 8928-ui-revamp-issues branchNovember 3, 2025 17:55
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@nikhilsaikethenikhilsaikethenikhilsaikethe approved these changes

+1 more reviewer

@greptile-appsgreptile-apps[bot]greptile-apps[bot] left review comments

Reviewers whose approvals may not affect merge requirements

Assignees

No one assigned

Labels

☢️ BugSomething isn't working

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

UI revamp issues

4 participants

@bjp232004@nikhilsaikethe@ktx-vaidehi@ktx-abhay

[8]ページ先頭

©2009-2025 Movatter.jp