Login via browser's cookies (Selenium WebDriver) or Local Storage (JavaScript)
How to avoid repeating login action before running each test?
It depends on how this was implemented in your Web application (via cookies or Local Storage).
So, let's start with cookies. The following algorithm should be used in this case (with the help of Selenium WebDriver):
- Login by usual (via email and password);
- Save cookies of your current session;
- Open the site and load saved cookies.
After step 3 you will log in to the application as the same after step 1. Now I will demonstrate this with the following code snippets:
"""Module Utilities with different useful methods."""
...
import pickle
import json
...
class Utilities:
"""Class Utilities with different useful methods."""
...
def save_cookie(self, name):
"""A method for saving cookies for domain."""
with open(name + ".pkl", "wb") as filehandler:
pickle.dump(self.driver.get_cookies(), filehandler)
def load_cookie(self, name):
"""A method for loading cookies for domain."""
with open(name + ".pkl", "rb") as cookiesfile:
cookies = pickle.load(cookiesfile)
for cookie in cookies:
if isinstance(cookie.get("expiry"), float):
cookie["expiry"] = int(cookie["expiry"])
self.driver.add_cookie(cookie)
Note that you can save and load cookies only for the current domain.
What if is your Web application using Local Storage? In this case, you can use the following method in Utilities class:
def set_local_storage(self, key, value):
"""A method for setting key in local storage."""
self.driver.execute_script("window.localStorage.setItem('{}',{})".format(key, json.dumps(value)))
Using this method you can set up all needed pairs of key/value in Local Storage. Then you will see that you are logged in (after updating the page).
Now let's consider a more practical example -- login to Facebook via pre-saved cookies of user. First of all, we need to log in by usual and save cookies of the user:
"""Module for saving cookies for the domain."""
import time
import config
from utilities import Utilities
class GetCookies(Utilities):
"""Class for saving cookies for the domain."""
def __init__(self, email="", password=""):
"""Method for saving cookies for the domain."""
config.DOMAIN = "https://facebook.com"
self._set_up()
# Finding elements on the page and actions.
self.wait_visibility_by_id("email").send_keys(email)
self.find_by_id("pass").send_keys(password)
self.find_by_id("loginbutton").click()
# Saving user's cookies.
self.save_cookie("ratmir.asanov.demo")
time.sleep(config.DELAY2)
self._tear_down()
if __name__ == "__main__":
COOKIE = GetCookies(config.USER1["email"], config.USER1["password"])
Then we need to log in with using pre-saved user's cookies:
"""Module for loading cookies for the domain."""
import time
import config
from utilities import Utilities
class LoadCookies(Utilities):
"""Class for loading cookies for the domain."""
def __init__(self, name_of_cookies_file):
"""Method for loading cookies for the domain."""
config.DOMAIN = "https://www.facebook.com"
self._set_up()
# Loading user's pre-saved cookies.
self.load_cookie(name_of_cookies_file)
# Refresh the page to see the changes (user should be logged in).
self.refresh_page()
time.sleep(config.DELAY2 * 5)
self._tear_down()
if __name__ == "__main__":
COOKIE = LoadCookies("ratmir.asanov.demo")
Hope it helps you!
Click here for source code.
Used references:
3 Things That Helped Me Get Into Web Design World
Today many people are looking for a job in IT, and many are curious about its design side in particular. For some reason, it is considered that Quality Assurance and Web design are the easiest ways to become a part of the IT-world for different professionals from other occupations.
Work and relax simultaneously. Cyprus for IT-workers
The island in the eastern Mediterranean - Cyprus - is known as a popular outsourcing place for IT-workers from all over the world, and in particular from Europe. What exactly attracts them on this small piece of land among the waters of the Mediterranean
Unit Tests in Golang Way
I’ve been working more than 7 years with Python. The way I tested applications with Python was really different from Golang. At first, Golang might shock you, but you just need to understand the ideas behind “Go”.