Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(TargetFramework)</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public async Task<bool> Execute(RoleDialogModel message)
};
var result = await browser.ActionOnElement(msg, locatorArgs, actionArgs);

message.Content = $"{actionArgs.Action} executed {(result.IsSuccess ? "success" : "failed")}";
message.Content = $"{actionArgs.Action} executed {(result.IsSuccess ? "success" : "failed")}. Current page url: '{result.UrlAfterAction}'.";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if args.show_current_url:
message.Content += "\r\nCurrent page url: '{result.UrlAfterAction}".


var path = webDriverService.GetScreenshotFilePath(message.MessageId);

Expand Down
Loading