-
```
JSONWire Error: Unknown command: mouseMoveTo (WARNING: The server did not provide any stacktrace information)
```
Reason of that is selenium safari driver bug https://code.google.com/p/selenium/i…
-
A click action in promise without chain is like this:
``` javascript
.then (function () {
return browser.elementById('someID');
}).then (function (el) {
return browser.clickElement(el);
})…
hy9be updated
9 years ago
-
Runtime script error occurs "jsonwire error: __gemini is not defined". The error occurs when the following condition: If the script contains a statement of the transition to another page (click or mou…
-
This is a wonderful library, but it is really overwhelming for newbies, and I am having trouble finding a consistent, single source for accurate API documentation anywhere.
I.e. something that lays o…
-
When I switched from this driver to `selenium-webdriver`, my entire test suite went from 30-40 minutes to run to 7 minutes to run. I have noticed this library will randomly hang between commands for l…
-
OS: Window 7
Browser: IE 8
Code:
``` js
require('colors');
var chai = require("chai");
var chaiAsPromised = require("chai-as-promised");
chai.use(chaiAsPromised);
chai.should();
var wd = require('w…
-
I'm using the following configuration to start webdriverio:
```
var driver_options = {
desiredCapabilities: {
browserName: 'firefox'
}
};
```
As soon as I run it I get the following …
-
This is the list of the upcoming WebdriverJS features which will be implemented with v2.0.0. Feel free to add missing features! If a checkbox is checked the feature is already implemented within [v2.0…
-
Hey,
I started using WebDriverIO, but I am not able to setValue to multiple elements. Here's my code:
``` js
var webdriverio = require('webdriverio');
var options = {
desiredCapabilities: {
…
-
upload_file() needs unit tests, and needs to check that Selenium is at least 2.8.0, as it doesn't work on older versions. Original ticket context follows.
---
Java and Ruby client libraries for Sele…