Skip to content
Snippets Groups Projects
Commit a3c614c4 authored by mathias.chouet's avatar mathias.chouet
Browse files

Update e2e test for integer only N in YAXN

parent 352db95f
No related branches found
No related tags found
1 merge request!69Resolve "Module y = a.x + b"
......@@ -196,10 +196,12 @@ export class CalculatorPage {
const inputs = this.getParamInputs();
await inputs.each(async (i) => {
if (await i.isDisplayed()) {
// N in YAXN child of SPP module must not be float
const isN = (await i.getAttribute("id")).includes("_N"); // @TODO strengthen this clodo test
const hasDot = (await i.getAttribute("value")).includes(".");
const hasExponent = (await i.getAttribute("value")).includes("e");
let keys = "" + Math.floor(Math.random() * 9) + 1;
if (! hasDot && ! hasExponent) {
if (! hasDot && ! hasExponent && ! isN) {
keys = "." + keys;
}
await i.sendKeys(keys);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment