admin管理员组文章数量:1344932
I'm trying to set up selenium-webdriver example using Javascript and Microsoft Edge. In any other browser this code below works. But Edge won't start. I tried to find a solution, but couldnt find anything that helped me... Maybe you can help.
const {Builder, By, Key, until} = require('selenium-webdriver');
(async function example() {
let driver = await new Builder().forBrowser('MicrosoftEdge').build();
try {
await driver.get('');
await driver.findElement(By.name('q')).sendKeys('webdriver', Key.RETURN);
await driver.wait(until.titleIs('webdriver - Google Search'), 1000);
} finally {
await driver.quit();
}
})();
Its to easiest example from the webdriver's npm-page.
I'm getting following error:
[Running] node "c:\Users\mr\Desktop\Selenium\SeleniumToJS\test.js"
(node:3700) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot read property 'start' of null
(node:3700) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
[Done] exited with code=0 in 0.512 seconds
If I insert 'edge' instead of 'MicrosoftEdge' follwing returns:
[Running] node "c:\Users\mreinwald\Desktop\Selenium\SeleniumToJS\loginLogout.js"
(node:18112) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Do not know how to build driver: edge; did you forget to call usingServer(url)?
(node:18112) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
[Done] exited with code=0 in 0.499 seconds
I'm trying to set up selenium-webdriver example using Javascript and Microsoft Edge. In any other browser this code below works. But Edge won't start. I tried to find a solution, but couldnt find anything that helped me... Maybe you can help.
const {Builder, By, Key, until} = require('selenium-webdriver');
(async function example() {
let driver = await new Builder().forBrowser('MicrosoftEdge').build();
try {
await driver.get('http://www.google./ncr');
await driver.findElement(By.name('q')).sendKeys('webdriver', Key.RETURN);
await driver.wait(until.titleIs('webdriver - Google Search'), 1000);
} finally {
await driver.quit();
}
})();
Its to easiest example from the webdriver's npm-page. https://www.npmjs./package/selenium-webdriver
I'm getting following error:
[Running] node "c:\Users\mr\Desktop\Selenium\SeleniumToJS\test.js"
(node:3700) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot read property 'start' of null
(node:3700) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
[Done] exited with code=0 in 0.512 seconds
If I insert 'edge' instead of 'MicrosoftEdge' follwing returns:
[Running] node "c:\Users\mreinwald\Desktop\Selenium\SeleniumToJS\loginLogout.js"
(node:18112) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Do not know how to build driver: edge; did you forget to call usingServer(url)?
(node:18112) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
[Done] exited with code=0 in 0.499 seconds
Share
Improve this question
edited Feb 2, 2018 at 8:00
Mr3m4r3
asked Feb 2, 2018 at 7:41
Mr3m4r3Mr3m4r3
752 silver badges10 bronze badges
6
-
why
'MicrosoftEdge'
and not'edge'
? Also, is the edge webdriver in thePATH
? – Adelin Commented Feb 2, 2018 at 7:47 - I first tried 'edge' but this didnt work either. Yeah the edge webdriver is in PATH defined. – Mr3m4r3 Commented Feb 2, 2018 at 7:50
-
1
With
'edge'
is the same error? – Adelin Commented Feb 2, 2018 at 7:51 -
Its the same type of error but an different error.
(node:18112) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Do not know how to build driver: edge; did you forget to call usingServer(url)?
How do I useusingServer(url)
? – Mr3m4r3 Commented Feb 2, 2018 at 7:54 - Do you have latest selenium? – Adelin Commented Feb 2, 2018 at 8:09
3 Answers
Reset to default 6This line triggers the error:
new Builder().forBrowser('MicrosoftEdge').build();
Cannot read property 'start' of null
actually says: "I don't know what MicrosoftEdge is". Basically, in some instances, selenium expects one of: "firefox"
, "edge"
(instead of "MicrosoftEdge"
), "chrome"
, etc
Now
The main topic:
Do not know how to build driver: edge; did you forget to call usingServer(url)?
This can happen due to many reasons:
- Is edge installed?
- Do you have the latest MicrosoftEdgeDriver server.?
- Is
MicrosoftEdgeDriver
is on your PATH?
If you answer yes to all of the above, then behind the scenes, while building, selenium didn't get the expected capabilities, and, for a last attempt, tries to connect to a remote webDriver
(that's why it says usingServer
)
As such, to solve this, you can try building the driver yourself, like this:
var edge = require('selenium-webdriver/edge');
var service = new edge.ServiceBuilder()
.setPort(55555)
.build();
var options = new edge.Options();
// configure browser options ...
var driver = edge.Driver.createSession(options, service);
And then you can continue with driver.get('http://www.google./ncr');
etc.
The reason for the error is: webdriver is looking for Edge Service to start while creating edge session and it find it to null(as its not set).
The simple solution is create Edge service using Edge drive path.
const {Builder, By, Key, until} = require('selenium-webdriver');
const edge = require('selenium-webdriver/edge');
const edgedriver = require('edgedriver'); //If this driver is already on your system, then no need to install using npm.
(async function example() {
let service = await new edge.ServiceBuilder(edgedriver.path);
let driver = await new Builder.forBrowser('MicrosoftEdge').setEdgeService(service).build();
try {
await driver.get('http://www.google./ncr');
//...............
//...............
} finally {
await driver.quit();
}
})();
I was able to resolve this by importing "Browser" from selenium-webdriver:
const { Browser } = require("selenium-webdriver");
And then creating the edge driver with:
let driver = await new Builder().forBrowser(Browser.EDGE).build();
版权声明:本文标题:Javascript Selenium Webdriver with Edge TypeError: Cannot read property 'start' of null - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743754129a2533193.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论