selenium session variables does not reset or nulls or kills
up vote
0
down vote
favorite
I am using selenium cucumber bdd framework.
In first feature file, I am creating a random string to be used for a text field in scenario1. After every scenario, I am closing and quitting the driver. When second feature file is executed, script is inserting the same random string generated in first feature instead of creating a new random string. How to kill the session variable in selenium after each feature file?? I have tried
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(CapabilityType.SUPPORTS_APPLICATION_CACHE,false);
capabilities.setCapability(CapabilityType.ForSeleniumServer.ENSURING_CLEAN_SESSION, true);
driver.manage.deleteallcookies();
but all this does not work. any other recommendations pls??
I am using java and chrome driver
selenium-webdriver selenium-chromedriver serenity-bdd cucumber-serenity
add a comment |
up vote
0
down vote
favorite
I am using selenium cucumber bdd framework.
In first feature file, I am creating a random string to be used for a text field in scenario1. After every scenario, I am closing and quitting the driver. When second feature file is executed, script is inserting the same random string generated in first feature instead of creating a new random string. How to kill the session variable in selenium after each feature file?? I have tried
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(CapabilityType.SUPPORTS_APPLICATION_CACHE,false);
capabilities.setCapability(CapabilityType.ForSeleniumServer.ENSURING_CLEAN_SESSION, true);
driver.manage.deleteallcookies();
but all this does not work. any other recommendations pls??
I am using java and chrome driver
selenium-webdriver selenium-chromedriver serenity-bdd cucumber-serenity
You probably need to show the relevant code where you're creating the random string - and let us know where that sits in your code.
– Josh
Nov 22 at 8:22
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using selenium cucumber bdd framework.
In first feature file, I am creating a random string to be used for a text field in scenario1. After every scenario, I am closing and quitting the driver. When second feature file is executed, script is inserting the same random string generated in first feature instead of creating a new random string. How to kill the session variable in selenium after each feature file?? I have tried
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(CapabilityType.SUPPORTS_APPLICATION_CACHE,false);
capabilities.setCapability(CapabilityType.ForSeleniumServer.ENSURING_CLEAN_SESSION, true);
driver.manage.deleteallcookies();
but all this does not work. any other recommendations pls??
I am using java and chrome driver
selenium-webdriver selenium-chromedriver serenity-bdd cucumber-serenity
I am using selenium cucumber bdd framework.
In first feature file, I am creating a random string to be used for a text field in scenario1. After every scenario, I am closing and quitting the driver. When second feature file is executed, script is inserting the same random string generated in first feature instead of creating a new random string. How to kill the session variable in selenium after each feature file?? I have tried
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(CapabilityType.SUPPORTS_APPLICATION_CACHE,false);
capabilities.setCapability(CapabilityType.ForSeleniumServer.ENSURING_CLEAN_SESSION, true);
driver.manage.deleteallcookies();
but all this does not work. any other recommendations pls??
I am using java and chrome driver
selenium-webdriver selenium-chromedriver serenity-bdd cucumber-serenity
selenium-webdriver selenium-chromedriver serenity-bdd cucumber-serenity
asked Nov 22 at 1:34
Ricky
115
115
You probably need to show the relevant code where you're creating the random string - and let us know where that sits in your code.
– Josh
Nov 22 at 8:22
add a comment |
You probably need to show the relevant code where you're creating the random string - and let us know where that sits in your code.
– Josh
Nov 22 at 8:22
You probably need to show the relevant code where you're creating the random string - and let us know where that sits in your code.
– Josh
Nov 22 at 8:22
You probably need to show the relevant code where you're creating the random string - and let us know where that sits in your code.
– Josh
Nov 22 at 8:22
add a comment |
active
oldest
votes
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%2f53422728%2fselenium-session-variables-does-not-reset-or-nulls-or-kills%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
You probably need to show the relevant code where you're creating the random string - and let us know where that sits in your code.
– Josh
Nov 22 at 8:22