如何在c#webdriver中按类型查找元素?

时间:2015-12-30 07:45:16

标签: c# xpath webdriver

我想找到并按类型单击元素,我该怎么做?

Exception Type:     ProgrammingError
Exception Value:    column "location_completed" of relation "core_dailyprogress" does not exist

1 个答案:

答案 0 :(得分:1)

您应该使用xpath中的@attribute='value'按属性进行过滤。

将其更改为

By.XPath("//button[@type='submit']")