SSH access GoDaddy SSH Access - Enable - Manage SSH Keys - Generate a New Keyin terminal ssh username@ip addresswhen prompt, enter password.
Python import requestsimport jsonimport csvimport pandas#url = 'https://imi.rhonda.ai/api/job/?search=United&page_size=40'headers = {'Authorization': 'Token 111bb68520a5f7fe63fbd85325118c5f25e56d9e'...
CTFL Seven Testing Principles:1. Testing shows presence of defects.2. Exhaustive testing is impossible.3. Early testing.4. Defect clustering.5. Pesticide paradox: Test cases need to be regularly reviewed a...
Testing Equivalence Partitioning:1. Identify the equivalence classes.2. Write the test cases to cover these classes.System Testing:End to end flows test the system as a whole.Test Plan Elements:1. Plan Identi...
Testing FunctionalUI TestingUAT Testing: User Acceptance TestingAccessibilityAd-hocRegression: Test integrated functionalities. SystemSanityStressBlackboxWhiteboxEnd-to-endSmoke: Quick random test for the maj...
Python Day 8 The dir() command lists capabilities. SQL: Structured Query LanguageCRUD: Create Read Update Delete
Python Day 7 import socketmysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)mysock.connect( ('data.pr4e.org', 80) )cmd = 'GET http://data.pr4e.ogr/romeo.txt HTTP/1.0'.encode()mysock.send(cmd)telnet ...
Scrpay Day 1 scrapyscrapy startproject quotes_spiderscrapy genspider quotes quotes.toscrape.comscrapy shell fetch('http://quotes.toscrape.com/') response.xpath('//h1')scrapy shell 'http://quotes.toscrape.co...
Python yield What does the "yield" keyword do?When you see a function with yield statements, apply this easy trick to understand what will happen:1. Insert a line result = [] at the start of the function.2. Replac...
XPATH XPATH counts from 1Python counts from 0Differnece between signle '/' or double '//':Single slash '/' anywhere in xpath signifies to look for the element immediately inside the parent element.Double sl...
Python Day 6 ccc = dict() #create a dictionaryccc['csev'] = 1 #Key csev Count 1ccc['cwen'] = 1 #Key cwen Count 1ccc['csev'] = ccc['cesv'] + 1 #Key csev count + 1print(ccc){'csev': 1, 'cwen': 2}Key csev has val...
Python Day 5 Parsing and Extracting:data = "From stephon.marquard@uct.ac.za Sat Jan 5 09:14:16 2008"atpos = data.find('@')sppos = data.find(' ', atpos)host = data[atpos+1 : sppos]Using in as a Logical Operato...
Python Day 4 try except else fianlly:try: a = 10 b = 20 c = 10 d = (a + b) / c print(d)except: print("In the except block")else: print("Because there was no exception, else is execut...
Ubuntu Key map: https://ubuntuforums.org/archive/index.php/t-188761.htmlpc is for function keys.us is for US layout. (BKSL is under US)Install Sublime: http://tipsonubuntu.com/2017/05/30/install-sublime-text...
Python Day 3 while x < 10;print("Value of x is: " + str(x)) x = x + 1 if x == 8: breakelse: print("won't print after break")While/Else:for k,v in d.items(): print(k) print(v).ite...
Launch Sublime Text 2 or 3 from the Mac OSX Terminal https://ashleynolan.co.uk/blog/launching-sublime-from-the-terminalAs I’m working in the OSX Terminal more and more these days, I'm always on the lookout for time saving shortcuts.A really useful tip t...
Selenium Generic Method to Explicit Wait from traceback import print_stackfrom utilities.handy_wrappers import HandyWrappersfrom selenium.webdriver.support.ui import WebDriverWaitfrom selenium.webdriver.support import expected_conditions ...
Selenium Implicit Wait VS Explicit Wait Implicit Wait: If elements are not immediately available, an implicit wait tells Web Driverto poll the DOM for a certain amount of time. The default setting is 0. Onceset, the implicit wait is set for...
System PATH Setup The following instructions will help you create your own PATH to a unique folder on your Mac or copy the file to an existing PATH directory for ChromeDriver.Download the ChromeDriver executable.Now we...
OneDrive Setup Login your OneDrive account. Your default folder is your own files.Choose Shard from left bar. Click the folder you want to sync. DO NOT check any radio.For Windows, have to uninstall OneDrive to clea...