I have one basic_function.js script file which contains some validation and frequently used operations. Like I said below is the validation part (example)
exports.validation = function (casper) {
return casper
.then(function () {
this.exists('1st Element ID',"Log Out button exist");
this.exists('2nd Element ID', "Shareable link exists");
});
};
which is used in every single script just by calling
functions.validation (casper);
When I start executing the test suite (comprises of around 10-12 test scripts), some times the 1st few scripts gets passed with the validation part and some scripts gets failed with the validation part and in log it prints that
failed to find matching element for Shareable link
and in next script it gets passed. I dont have any idea why it is behaving like this
Some code may be helpful to make the problem more clear.. But if you are running a bunch of tests and have code changing the thing you are testing in between said tests, then you may need to wait after you change the options. To make it clearer I'll provide an example of what I'm trying to say. I do a lot of website testing with casper so this is my best guess as to might be what is happening (on some level) If I write a test that opens the home page. Types something into a search bar, then instantly tests for something on the results page. It will error because there is load time obviously switching from pages to pages, and you cannot test the result page without waiting a second or two. So typically I use a casper.waitForSelector() but in your case you may want just a casper.wait() in which you hard code a time that you deem sufficient.