我正在使用Specflow尝试BBD。运行功能文件时收到错误 错误是:
Result Message: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException : 'System.Dynamic.ExpandoObject' does not contain a definition for 'keyword'
错误在此方法中的某处:
[Then(@"I should see the result for keyword")]
public void ThenIShouldSeeTheResultForeyword(Table table)
{
dynamic tableDetail = table.CreateDynamicInstance();
String key = tableDetail.keyword;
if (currentDriver.FindElement(By.PartialLinkText(key)).Displayed == true)
Console.WriteLine("Control Exist");
else
Console.WriteLine("Control not exist");
}
我的功能文件实现是:
@SmokeTest
@Browser:Chrome
Scenario: Google Search for Execute Automation
Given I have navigated to Google page
Given I see the Google page fully loaded
When I type search keyword as
| Keyword |
| Formula One |
Then I should see the result for keyword
| keyword |
| Formula One |
My steps defincition file implementation is:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SpecFlow.Assist.Dynamic;
using OpenQA.Selenium;
using System.Configuration;
using TechTalk.SpecFlow;
using Baseclass.Contrib.SpecFlow.Selenium.NUnit.Bindings;
using TechTalk.SpecFlow.Assist;
using SpecFlow.Assist;
using SpecFlow;
namespace SpecFlowFirst.Steps
{
[Binding]
class GoogleSearchSteps
{
IWebDriver currentDriver = null;
[Given(@"I have navigated to Google page")]
public void GivenIhaveNavigatedToGooglePage()
{
Browser.Current.Navigate().GoToUrl(ConfigurationManager.AppSettings["seleniumBaseURL"]);
currentDriver = Browser.Current;
}
[Given(@"I see the Google page fully loaded")]
public void GivenISeeTheGooglePageFullyLoaded()
{
if (currentDriver.FindElement(By.Name("q")).Displayed == true)
Console.WriteLine("Page loaded fully");
else
Console.WriteLine("Page failed to load");
}
[When(@"I type search keyword as")]
public void WhenITypSsearchKeywordAs(Table table)
{
dynamic tableDetail = table.CreateDynamicInstance();
currentDriver.FindElement(By.Name("q")).SendKeys(tableDetail.keyword);
}
[Then(@"I should see the result for keyword")]
public void ThenIShouldSeeTheResultForeyword(Table table)
{
dynamic tableDetail = table.CreateDynamicInstance();
String key = tableDetail.keyword;
if (currentDriver.FindElement(By.PartialLinkText(key)).Displayed == true)
Console.WriteLine("Control Exist");
else
Console.WriteLine("Control not exist");
}
}
}
我不确定为什么在运行该功能时会抛出错误。解决方案构建没有错误。
完整的错误跟踪是:
Test Name: GoogleSearchForExecuteAutomation on Chrome
Test FullName: SpecFlowFirst.Features.GoogleSearchFeature.GoogleSearchForExecuteAutomation on Chrome
Test Source: e:\RL Fusion\projects\BDD\C# BDD\SpecFlowFirst\SpecFlowFirst\SpecFlowFirst\Features\GoogleSearch.feature : line 20
Test Outcome: Failed
Test Duration: 0:00:11.715
Result Message: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException : 'System.Dynamic.ExpandoObject' does not contain a definition for 'keyword'
Result StackTrace:
at CallSite.Target(Closure , CallSite , Object )
at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
at SpecFlowFirst.Steps.GoogleSearchSteps.WhenITypSsearchKeywordAs(Table table) in e:\RL Fusion\projects\BDD\C# BDD\SpecFlowFirst\SpecFlowFirst\SpecFlowFirst\Steps\GoogleSearchSteps.cs:line 42
at lambda_method(Closure , IContextManager , Table )
at TechTalk.SpecFlow.Bindings.BindingInvoker.InvokeBinding(IBinding binding, IContextManager contextManager, Object[] arguments, ITestTracer testTracer, TimeSpan& duration)
at TechTalk.SpecFlow.Infrastructure.TestExecutionEngine.ExecuteStepMatch(BindingMatch match, Object[] arguments)
at TechTalk.SpecFlow.Infrastructure.TestExecutionEngine.ExecuteStep(StepInstance stepInstance)
at TechTalk.SpecFlow.Infrastructure.TestExecutionEngine.OnAfterLastStep()
at TechTalk.SpecFlow.TestRunner.CollectScenarioErrors()
at SpecFlowFirst.Features.GoogleSearchFeature.ScenarioCleanup() in e:\RL Fusion\projects\BDD\C# BDD\SpecFlowFirst\SpecFlowFirst\SpecFlowFirst\Features\GoogleSearch.feature.cs:line 0
at SpecFlowFirst.Features.GoogleSearchFeature.GoogleSearchForExecuteAutomation(String browser) in e:\RL Fusion\projects\BDD\C# BDD\SpecFlowFirst\SpecFlowFirst\SpecFlowFirst\Features\GoogleSearch.feature:line 26
感谢您的帮助,Riaz
答案 0 :(得分:0)
简要地查看code for that method我认为它可能会“修复”该属性的情况,因此请尝试使用String key = tableDetail.Keyword
答案 1 :(得分:0)
I rewrote Baseclass.Contrib.SpecFlow.Selenium.NUnit for 2.1 support.
新代码库,对nunit3的@ignore标签支持以及BrowserStack,SauceLabs,TestingBot等多种测试服务。以防您想要升级到2.1
答案 2 :(得分:0)
以下是有问题的情景:
when
我只想指出:
Keyword
语句的表格中包含then
列(大写字母K),keyword
语句的表格中包含tableDetails.Keyword
列(小写k)。 这意味着如果您同时更新keyword
的两个用法(从Keyword
到IDictionary<string, object>
,反之亦然),其中一个将始终抛出。
如果这对您不起作用,请记住host key in your manifest.yml实施IEnumerable<KeyValuePair<string, object>>
和CreateDynamicInstance
,这意味着您始终可以向控制台打印可用的密钥以便了解$filters = @("*a*","*b*")
$data = @("c/a","c/b","c/a/d","e","a","e/f")
$desiredResults = @("e","e/f")
Write-Host "Filters" -ForegroundColor Yellow
$filters
Write-Host "Data" -ForegroundColor Yellow
$data
$results = @()
foreach ($d in $data)
{
[bool] $skip = $false
foreach ($filter in $filters)
{
if ($d -like $filter)
{
$skip = $true
}
}
if ($skip -eq $false)
{
$results += $d
}
}
Write-Host "Desired Results" -ForegroundColor Yellow
$desiredResults
Write-Host "Results" -ForegroundColor Yellow
$results