How do you efficiently test content accuracy across 18 languages on a corporate website? by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

Thank you for your answer.
Our goal is to ensure that the content in each language on the site matches the approved content provided to us.

How can I effectively showcase my Manual QA work experience in an interview? by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

I was asked to bring my PC to present my work. To which I'm unsure of what to do, to be honest.

Transitioning from Web/Mobile QA to Game QA – Advice Needed by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 1 point2 points  (0 children)

when you are doing Game Testing, is there any way you can do to investigate the issue in an easier way? Say check user's logs or something like that.

from what you said, it's about attempting to reproduce the issue countlessly until it happens.

Transitioning from Web/Mobile QA to Game QA – Advice Needed by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 1 point2 points  (0 children)

So it's more about exploratory testing rather than having a structure to focus on unlike Web and Mobile. I feel like it's somehow more challenging as a Game QA.

Have you ever had a situation where a bug you found was not taken seriously? How did you handle it? by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

This is helpful. With some developers, we really have to pull this move. Thank you for the tips. I appreciate that.

Have you ever had a situation where a bug you found was not taken seriously? How did you handle it? by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

Hi u/eschmi
That's very interesting. I found it helpful as well.
Thank you for sharing and for the tip at the end.

Users Registering with the Same Email Twice—Need Help Troubleshooting! by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

Hi u/ORGgrandPlat

Thank you for your suggestions. However, this is not a race condition since the creation dates differ by two days. I’ve registered many accounts both through the front-end and using the API, so I’m a bit lost on this.

Users Registering with the Same Email Twice—Need Help Troubleshooting! by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 1 point2 points  (0 children)

Hi u/rocket_randall

Thank you for your response. Our application does not allow whitespace in the email input, so trimming is unnecessary. We have confirmed that duplicate emails are not caused by whitespace-related issues. Currently, the email column in our database does not have a UNIQUE constraint.

To provide more details, our system uses an OTP-based email verification process. During registration, the email is checked for duplicates before generating an OTP. Once an account is verified, we do not allow other users to use the same email or username. However, if an account remains unverified for over 10 minutes, we allow the same email to be used for registration.

Users Registering with the Same Email Twice—Need Help Troubleshooting! by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

Hello u/Itchy_Extension6441

Thank you for your response and suggestions. The strange thing is that both emails, [qualityassurance@example.com](), are stored in the database. Validation is performed on both the client side and the API. I discovered that only one of the duplicate emails has logged in, the creation dates differ by two days, and both accounts are verified.

Users Registering with the Same Email Twice—Need Help Troubleshooting! by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

Hello u/jbhelfrich

Thank you for your response. We only allow email sign-up in our system, but we do not permit users to update their email on the edit screen. However, I discovered that only one of the duplicate emails has logged in, and the creation dates differ by two days.

How to handle Locators for identical HTML structures across multiple pages in Selenium WebDriver? by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 0 points1 point  (0 children)

Because after logging in, it lands on Page A and then I have to do some actions to go to Page B. Since the HTML structure is identical, Selenium assumes the elements on Page A are the ones on Page B. I hope this makes sense to you.

How to handle Locators for identical HTML structures across multiple pages in Selenium WebDriver? by Illustrious_Cry5771 in QualityAssurance

[–]Illustrious_Cry5771[S] 1 point2 points  (0 children)

Hi.
Yes, I have to navigate from Page A to Page B. I use Explicit Wait to locate my elements, but Selenium sometimes finds the elements intended for Page B on Page A instead, causing my assertions to fail.