我需要验证字符串以查看字符串是否在 BOLD 中,以及文本是否为绿色。
Root_TaxDataSummary.SlvObject("FederalBalanceDueAmount").GetROProperty("text")
refundBold = InStr(1,Root_TaxDataSummary,"?")
If refundBold > 0
'Pass
Else
'Fail
End If
答案 0 :(得分:0)
而是属性$username = "Myusername";
$password = "mypassword";
$url = "https://www.thefile.com/file.xml.gz";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
print_r($output);
print_r($info);
,我认为您应该使用其他属性,例如text
或innerhtml
。然后,查找outerhtml
等模式取决于您的Web对象。