Answers for "selenium setup"

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()
Posted by: Guest on December-07-2020
2

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
Posted by: Guest on December-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language