robotframework-2.7.7.atest.testdata.test_libraries.HtmlPrintLib.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robotframework Show documentation
Show all versions of robotframework Show documentation
High level test automation framework
The newest version!
import sys
def print_one_html_line():
print '*HTML* Google'
def print_many_html_lines():
print '*HTML* \n0,0 0,1 '
print '1,0 1,1 \n
'
print '*HTML*This is html
'
print '*INFO*This is not html
'
def print_html_to_stderr():
print >> sys.stderr, '*HTML* Hello, stderr!!'