Skip to content

Commit

Permalink
Exception message correction (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
aik099 authored Feb 25, 2024
1 parent ce10226 commit f40dfb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebdriverClassicDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ public function setValue(
break;
}
} catch (\Throwable $e) {
throw new DriverException("Cannot retrieve $widgetType value: {$e->getMessage()}", 0, $e);
throw new DriverException("Cannot set $widgetType value: {$e->getMessage()}", 0, $e);
}

$this->trigger($xpath, 'blur');
Expand Down

0 comments on commit f40dfb9

Please sign in to comment.