Added Support for Silverlight. Added more unit tests
Support for automating Silverlight in firefox and Internet Explorer is now supported, along with WPF and regular Win32.
This commit is contained in:
@@ -12,6 +12,7 @@ public class Config extends PropertiesSerializer {
|
||||
public static String DEFAULT_PROP_FILENAME = "synthuse.properties";
|
||||
|
||||
public String disableWpf = "false";
|
||||
public String disableFiltersWpf = "false";
|
||||
public String urlList = "";
|
||||
public String xpathList = "";
|
||||
public String xpathHightlight = ".*process=\"([^\"]*)\".*";
|
||||
@@ -28,6 +29,15 @@ public class Config extends PropertiesSerializer {
|
||||
|
||||
public boolean isWpfBridgeDisabled()
|
||||
{
|
||||
if (disableWpf == null)
|
||||
return false;
|
||||
return disableWpf.equals("true") || disableWpf.equals("True");
|
||||
}
|
||||
|
||||
public boolean isFilterWpfDisabled()
|
||||
{
|
||||
if (disableFiltersWpf == null)
|
||||
return false;
|
||||
return disableFiltersWpf.equals("true") || disableFiltersWpf.equals("True");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user