-
-
Notifications
You must be signed in to change notification settings - Fork 752
Description
What are you trying to achieve?
Trying to click on element
What do you get instead?
invalid element state: Element is not currently interactable and may not be manipulated
Provide test source code if related
I use xpath, css and text and still get same error above.
I.resizeWindow(1440, 806);
I.amOnPage('/en-us/login');
I.click('#btn-login');
I.click('New Order');
I.click('Sell');
I.fillField('volume', 1000000);
I.click('#order-simple > div > div:nth-child(1) > form > fieldset > div.row.vpad20.center > span:nth-child(1) > button')
I.click('Submit Order');
I.wait(3);
I.see('Insufficient');
Details
-
CodeceptJS version: 1.1
-
NodeJS Version: latest
-
Operating System: mac sierra high
-
WebDriverIO using stand-alone selenium and chrome driver
-
Configuration file:
"tests": "./*_test.js",
"timeout": 10000,
"output": "./output",
"helpers": {
"WebDriverIO": {
"restart":true,
"url":
"browser": "chrome",
"desiredCapabilities": {
"chromeOptions": {
"args": ["allow-running-insecure-content"]
}
}
}
},
"include": {
"I": "./steps_file.js"
},
"bootstrap": false,
"mocha": {
"reporterOptions": {
"reportDir": "output"
}
},
"name": "testautomation"