Development

As artificial intelligence (AI) becomes a more significant part of our daily lives, we must consider its ethics. This blog post shares why we need to have rules for AI ethics and provides essential guidelines to follow in AI development services. These include ensuring data privacy by protecting user information, promoting fairness by avoiding biases
The post AI Ethics Guidelines: A Practical Guide appeared first on Codoid.

Geckodriver 0.35.0 does not seems to support the latest Firefox as I get the error message:
org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: Expected browser binary location, but unable to find binary in default location, no ‘moz:firefoxOptions.binary’ capability provided, and no binary flag set on the command line

So I want to tell my Selenium automation to launch the previous version supported there (something from https://firefox-source-docs.mozilla.org/testing/geckodriver/Support.html).
How can I do this?

I don’t have a lot of experience in manual testing. I’m writing test cases for manually testing email authentication for a login:

user enters email and password
user is launched to verification page with a text box for a code
user is sent an email with the code
user enters code and is logged in

all I’m allowed to use right now is my own company email address. I’m the only QA in my company so technically that would work for now, but wow it feels shoddy. Would the best practice be to put logging into my email account directly in the test steps? Is there some kind of workaround that I’m missing? Is this as crazy as it sounds to me??