JavascriptError: TypeError: cyclic object value … Driver info: driver.version: unknown
I am getting below error when I run my test cases in Protractor
JavascriptError: TypeError: cyclic object value
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:53'
System info: host: 'SH********01', ip: '172.18.221.191', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_151'
Driver info: driver.version: unknown
this issue is happening w.r.t all the browsers
config file -
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['spec.js'],
capabilities: {
'browserName': 'firefox',
},
allScriptsTimeout: 120000,
jasmineNodeOpts: {
defaultTimeoutInterval: 120000,
}
};
spec.js
var v = require('./Pagedata/Local/url.json')
describe('Login the app', function () {
var username = element(by.model('vm.user.username'));
var password = element(by.model('vm.user.password'));
var signin = element(by.xpath("//button[contains(text(),Sign)]"));
it('test', function () {
browser.ignoreSynchronization = true;
browser.get(v.url);
waitforpagetoload();
// username.click()
username.sendKeys('43731');
// password.click()
password.sendKeys('43731');
signin.click();
});
});
url.json
{
"url":"http://www.mywebsi.....e.com"
}
I have updated the npm and node js, still facing the same issue
I have added my code here
jasmine protractor
|
show 1 more comment
I am getting below error when I run my test cases in Protractor
JavascriptError: TypeError: cyclic object value
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:53'
System info: host: 'SH********01', ip: '172.18.221.191', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_151'
Driver info: driver.version: unknown
this issue is happening w.r.t all the browsers
config file -
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['spec.js'],
capabilities: {
'browserName': 'firefox',
},
allScriptsTimeout: 120000,
jasmineNodeOpts: {
defaultTimeoutInterval: 120000,
}
};
spec.js
var v = require('./Pagedata/Local/url.json')
describe('Login the app', function () {
var username = element(by.model('vm.user.username'));
var password = element(by.model('vm.user.password'));
var signin = element(by.xpath("//button[contains(text(),Sign)]"));
it('test', function () {
browser.ignoreSynchronization = true;
browser.get(v.url);
waitforpagetoload();
// username.click()
username.sendKeys('43731');
// password.click()
password.sendKeys('43731');
signin.click();
});
});
url.json
{
"url":"http://www.mywebsi.....e.com"
}
I have updated the npm and node js, still facing the same issue
I have added my code here
jasmine protractor
Can you please share some more details like conf file and test cases so that we can debug more.
– Yash Jagdale
Nov 21 at 9:21
i have added the code above plz have a look
– Suhail Ahmed
Nov 21 at 9:50
can you ping url.json too? looks like some object is referring each other and creating cyclic dependency.
– Yash Jagdale
Nov 21 at 9:59
I have the same case for login in my project, I see that you are not setting browser.ignoreSynchronization = false; after the signin button, did you try to set back to false after the login? if I dont do this at least for me some weird errors are displayed when angular is loaded
– Alexandre
Nov 21 at 10:52
@YashJagdale i have added the url file data.
– Suhail Ahmed
Nov 22 at 10:08
|
show 1 more comment
I am getting below error when I run my test cases in Protractor
JavascriptError: TypeError: cyclic object value
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:53'
System info: host: 'SH********01', ip: '172.18.221.191', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_151'
Driver info: driver.version: unknown
this issue is happening w.r.t all the browsers
config file -
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['spec.js'],
capabilities: {
'browserName': 'firefox',
},
allScriptsTimeout: 120000,
jasmineNodeOpts: {
defaultTimeoutInterval: 120000,
}
};
spec.js
var v = require('./Pagedata/Local/url.json')
describe('Login the app', function () {
var username = element(by.model('vm.user.username'));
var password = element(by.model('vm.user.password'));
var signin = element(by.xpath("//button[contains(text(),Sign)]"));
it('test', function () {
browser.ignoreSynchronization = true;
browser.get(v.url);
waitforpagetoload();
// username.click()
username.sendKeys('43731');
// password.click()
password.sendKeys('43731');
signin.click();
});
});
url.json
{
"url":"http://www.mywebsi.....e.com"
}
I have updated the npm and node js, still facing the same issue
I have added my code here
jasmine protractor
I am getting below error when I run my test cases in Protractor
JavascriptError: TypeError: cyclic object value
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:53'
System info: host: 'SH********01', ip: '172.18.221.191', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_151'
Driver info: driver.version: unknown
this issue is happening w.r.t all the browsers
config file -
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['spec.js'],
capabilities: {
'browserName': 'firefox',
},
allScriptsTimeout: 120000,
jasmineNodeOpts: {
defaultTimeoutInterval: 120000,
}
};
spec.js
var v = require('./Pagedata/Local/url.json')
describe('Login the app', function () {
var username = element(by.model('vm.user.username'));
var password = element(by.model('vm.user.password'));
var signin = element(by.xpath("//button[contains(text(),Sign)]"));
it('test', function () {
browser.ignoreSynchronization = true;
browser.get(v.url);
waitforpagetoload();
// username.click()
username.sendKeys('43731');
// password.click()
password.sendKeys('43731');
signin.click();
});
});
url.json
{
"url":"http://www.mywebsi.....e.com"
}
I have updated the npm and node js, still facing the same issue
I have added my code here
jasmine protractor
jasmine protractor
edited Nov 22 at 10:08
asked Nov 21 at 8:20
Suhail Ahmed
589
589
Can you please share some more details like conf file and test cases so that we can debug more.
– Yash Jagdale
Nov 21 at 9:21
i have added the code above plz have a look
– Suhail Ahmed
Nov 21 at 9:50
can you ping url.json too? looks like some object is referring each other and creating cyclic dependency.
– Yash Jagdale
Nov 21 at 9:59
I have the same case for login in my project, I see that you are not setting browser.ignoreSynchronization = false; after the signin button, did you try to set back to false after the login? if I dont do this at least for me some weird errors are displayed when angular is loaded
– Alexandre
Nov 21 at 10:52
@YashJagdale i have added the url file data.
– Suhail Ahmed
Nov 22 at 10:08
|
show 1 more comment
Can you please share some more details like conf file and test cases so that we can debug more.
– Yash Jagdale
Nov 21 at 9:21
i have added the code above plz have a look
– Suhail Ahmed
Nov 21 at 9:50
can you ping url.json too? looks like some object is referring each other and creating cyclic dependency.
– Yash Jagdale
Nov 21 at 9:59
I have the same case for login in my project, I see that you are not setting browser.ignoreSynchronization = false; after the signin button, did you try to set back to false after the login? if I dont do this at least for me some weird errors are displayed when angular is loaded
– Alexandre
Nov 21 at 10:52
@YashJagdale i have added the url file data.
– Suhail Ahmed
Nov 22 at 10:08
Can you please share some more details like conf file and test cases so that we can debug more.
– Yash Jagdale
Nov 21 at 9:21
Can you please share some more details like conf file and test cases so that we can debug more.
– Yash Jagdale
Nov 21 at 9:21
i have added the code above plz have a look
– Suhail Ahmed
Nov 21 at 9:50
i have added the code above plz have a look
– Suhail Ahmed
Nov 21 at 9:50
can you ping url.json too? looks like some object is referring each other and creating cyclic dependency.
– Yash Jagdale
Nov 21 at 9:59
can you ping url.json too? looks like some object is referring each other and creating cyclic dependency.
– Yash Jagdale
Nov 21 at 9:59
I have the same case for login in my project, I see that you are not setting browser.ignoreSynchronization = false; after the signin button, did you try to set back to false after the login? if I dont do this at least for me some weird errors are displayed when angular is loaded
– Alexandre
Nov 21 at 10:52
I have the same case for login in my project, I see that you are not setting browser.ignoreSynchronization = false; after the signin button, did you try to set back to false after the login? if I dont do this at least for me some weird errors are displayed when angular is loaded
– Alexandre
Nov 21 at 10:52
@YashJagdale i have added the url file data.
– Suhail Ahmed
Nov 22 at 10:08
@YashJagdale i have added the url file data.
– Suhail Ahmed
Nov 22 at 10:08
|
show 1 more comment
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407804%2fjavascripterror-typeerror-cyclic-object-value-driver-info-driver-version%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407804%2fjavascripterror-typeerror-cyclic-object-value-driver-info-driver-version%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you please share some more details like conf file and test cases so that we can debug more.
– Yash Jagdale
Nov 21 at 9:21
i have added the code above plz have a look
– Suhail Ahmed
Nov 21 at 9:50
can you ping url.json too? looks like some object is referring each other and creating cyclic dependency.
– Yash Jagdale
Nov 21 at 9:59
I have the same case for login in my project, I see that you are not setting browser.ignoreSynchronization = false; after the signin button, did you try to set back to false after the login? if I dont do this at least for me some weird errors are displayed when angular is loaded
– Alexandre
Nov 21 at 10:52
@YashJagdale i have added the url file data.
– Suhail Ahmed
Nov 22 at 10:08