此链接:http://www.codeproject.com/Articles/19911/Dynamically-Invoke-A-Method-Given-Strings-with-Met 清楚地解释了当方法名称+类型为字符串变量时如何调用方法。
我正在使用WatiN制作一个c#项目。我使用的所有WatiN方法都是相同的形式:
示例: *( ById,.ByClass ..;因此应该连接,但我无法将其设置为粗体:s)
browser.**TextField**(Find.By **Id**("name")).**TypeText**("my name");
browser.**Span**(Find.By **Class**("main_title")).**Click(**);
browser.**Link**(Find.By **Id**("mid_link")).**Click(**);
如您所见,这总是由3个可变的方法组成。我创建了一个由web属性组成的类webElement:tag,type,search,action。
示例中的位置 - > tag = "TextField"; type = "Id", search = "name"; action = "TypeText"
。
为了动态获取web元素,我创建了一个WebHandler类,我尝试动态调用正确的方法。
因此,主类具有所有webElement对象的列表,并且可以在给定时间向WebHandler类提供正确的对象。 Webhandler类现在应该动态调用每个元素。我使用与给定url相同的invoke方法,因此我调用它的代码是:
类WebHandler:
private IE browser = new IE("google.com");
public void method(WebElement webElement)
{
//Get the findBy dynamically | this works
WatiN.Core.Constraints.Constraint findBy =
(WatiN.Core.Constraints.Constraint)InvokeMethod("WatiN.Core.Find, WatiN.Core", "By" + webElement.Type, webElement.Search); //where type = "Id" and search = "name"
//Get the tag (like textfield, link, span) dynamically | this does not work
Type aType = Type.GetType("WatiN.Core." + webElement.Tag, "WatiN.Core") //how can I set the element variable to this type? aType element -> Does not work
aType element = (WatiN.Core.TextField)InvokeMethod("this.browser", webElement.Tag, findBy); //tag = TextField
element.TypeText("a name"); //same problem as above | so should be invoked
}
问题:
自己的考虑因素:
答案 0 :(得分:1)
这一行
Type aType = Type.GetType("WatiN.Core" + webElement.Tag)
在Core
之后没有点。似乎Core
是名称空间,因此应该与标记名称分开。
答案 1 :(得分:0)
这个的要点是你得到你想要的类型,然后使用反射来获取方法,然后调用给定的方法,传递实例。
所以,像这样:
Type aType = Type.GetType(string.Format("WatiN.Core.{0}.WatiN.Core", webElement.Tag));
MethodInfo method = aType.GetMethod("TextField");
method.Invoke(this.browser, webElement.Tag, findBy);
这里的关键点是:
有快捷方式,我可能没有针对您的问题的具体细节,但这应该让您接近您想要的。
答案 2 :(得分:0)
在这里,将它放在LINQPad中,但应该或多或少可移植:
void Main()
{
WatiN.Core.Browser theBrowser = new WatiN.Core.IE("google.com");
Foo(theBrowser, "Id", "gbqfq", "TextField", "TypeText", "Search for this");
}
public void Foo(WatiN.Core.Browser browser, string findTypeBy, string search, string tagName, string elementMethodName, params object[] argsForMethod)
{
var watinCoreAsm = Assembly.LoadWithPartialName("WatiN.Core");
if(watinCoreAsm == null) return;
var watinCoreTypes = watinCoreAsm.GetTypes();
if(watinCoreTypes == null) return;
var findType = watinCoreTypes.FirstOrDefault(type => type.Name == "Find");
if(findType == null) return;
var constraintInstance = findType.GetMethod("By" + findTypeBy, new Type[]{ typeof(string) }).Invoke(null, new[]{search});
if(constraintInstance == null) return;
var browserAccessor = browser.GetType().GetMethod(tagName, new Type[]{ constraintInstance.GetType() });
if(browserAccessor == null) return;
var resultElement = browserAccessor.Invoke(browser, new[]{ constraintInstance });
if(resultElement == null) return;
var elementMethod = resultElement.GetType().GetMethod(elementMethodName);
if(elementMethod == null) return;
elementMethod.Invoke(resultElement, argsForMethod);
}