Answers for "python script for automation"

2

automation in python

#you can use automation in python using following tools
#Web Automation use selenium driver
#GUI Automation use pyautogui tool

#Selenium Automation Example
#Download chrome driver for Selenium 
# https://chromedriver.chromium.org/downloads

#############Lanuch WebDriver Function - Begin #############
#Make sure the downloaded driver is in the same path where your running code
#else you will get an error.

from selenium import webdriver
# store the browser driver
chrome_browser = launch_chromebrowser('chromedriver')

def launch_chromebrowser(browsername):
    # load the browser driver
    return webdriver.Chrome(browsername)
#############Lanuch WebDriver Function - End #############
Posted by: Guest on June-16-2020
0

python script for automation

mkdir food, food\fruits, food\fruits\apples, food\fruits\oranges, food\vegetables
Posted by: Guest on April-29-2020
0

python script for automation

new-item food\fruits\banana.txt, food\fruits\strawberry.txt, food\fruits\blueberry.txt, food\fruits\apples\honeycrisp.txt, food\fruits\oranges\mandarin.txt, food\vegetables\carrot.txt
Posted by: Guest on April-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language