Skip to content

Commit

Permalink
Added variable support for Element Action - Select Option saucepleez#205
Browse files Browse the repository at this point in the history
  • Loading branch information
saucepleez committed Apr 17, 2020
1 parent d5e3590 commit 5037b67
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -324,11 +324,11 @@ where rw.Field<string>("Parameter Name") == "Attribute Name"

string selectionType = (from rw in v_WebActionParameterTable.AsEnumerable()
where rw.Field<string>("Parameter Name") == "Selection Type"
select rw.Field<string>("Parameter Value")).FirstOrDefault();
select rw.Field<string>("Parameter Value")).FirstOrDefault().ConvertToUserVariable(sender);

string selectionParam = (from rw in v_WebActionParameterTable.AsEnumerable()
where rw.Field<string>("Parameter Name") == "Selection Parameter"
select rw.Field<string>("Parameter Value")).FirstOrDefault();
select rw.Field<string>("Parameter Value")).FirstOrDefault().ConvertToUserVariable(sender);


seleniumInstance.SwitchTo().ActiveElement();
Expand Down

0 comments on commit 5037b67

Please sign in to comment.