Enable the default report solution Step1: Create a suite listener and add codes into it, please watch the blue box more carefully. Step2: Enable the new listener in the TestNG configuration file Step3: add ftp settings and the recipient of email in t…
Extractor的工作是从下载的网页中将它包含的所有URL提取出来.这是个细致的工作,你需要考虑到所有可能的url的样式,比如网页中常常会包含相对路径的url,提取的时候需要将它转换成绝对路径.这里我们选择使用正则表达式来完成链接的提取. html标签中的链接地址通常会出现在href属性或者src属性中,所以我们采用两个正则表达式来匹配网页中的所有链接地址. 网页链接提取器Extractor类: using System; using System.Colle…