selenium installation code example

Example 1: install selenium python

$ pip install selenium

Example 2: python selenium setup

from selenium import webdriver
import unittest

class example(unittest.TestCase):
  
    @classmethod
    def setUpClass(cls):

        cls.driver = webdriver.Chrome("C:\Program Files (x86)\chromedriver.exe")
        cls.driver.maximize_window()
        
    def test_login(self):
      
      self.driver.get("https://eu-uat2.weissr-cloud.com")
      
    @classmethod
    def tearDownClass(cls):

        cls.driver.quit()
        print("Test Completed")
        
if __name__ == '__main__':
  unittest.main()

Example 3: how to download in selenium

Selenium itself cannot verify file downloads, can click on download link 
but can't go outside the browser and open the downloaded file 
Other tools need to be used for that Robot and AutoIT

Tags:

Misc Example