在下面的代码中,我需要打印color
in Hex format
。
第一个Print 语句以.RGB
格式显示值rgb(102,102,102)
。
第二条语句显示的价值Hex
是#666666
但是我手动将值输入到第二个打印语句中,即102,102,102
.
有什么方法可以将我从第一个语句(颜色)中获得的值传递给第二个打印语句并获得结果?
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Google {
public static void main(String[] args) throws Exception {
WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com/");
String Color = driver.findElement(By.xpath("//div[@class='gb_e gb_f gb_g gb_xb']/a")).getCssValue("color");
System.out.println(Color);
String hex = String.format("#%02x%02x%02x", 102,102,102);
System.out.println(hex);
}
}