Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cuc 590 send key bug #671

Merged
merged 3 commits into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions backend/features/step_definitions/stepdefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ When('I insert {string} into the field {string}', async function fillTextField(t

await Promise.any(promises)
.then(async (elem) => {
await elem.clear();
await elem.sendKeys(value);
await elem.clear()
await typing(elem, value)
})
.catch(async (e) => {
await driver.takeScreenshot().then(async (buffer) => {
Expand All @@ -369,6 +369,12 @@ When('I insert {string} into the field {string}', async function fillTextField(t
});
});

const typing = async(elem, inputString) => {
for (const char of inputString.split('')){
await elem.sendKeys(char)
}
}

// "Radio"
When('I select {string} from the selection {string}', async function clickRadioButton(radioname, label) {
await handleError(async () => {
Expand Down
Loading