Skip to content

Commit

Permalink
Merge pull request #112 from aquality-automation/devTools_implementation
Browse files Browse the repository at this point in the history
Fix javadoc errors
  • Loading branch information
aqualityAutomation authored Sep 20, 2022
2 parents e494d87 + d43878f commit 7dbfca5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/aquality/selenium/browser/Browser.java
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public Object executeScript(final String script, Object... arguments) {
/**
* Executes JS (jQuery) script.
*
* @param script Script pinned with {@link this#javaScriptEngine()}.
* @param script Script pinned with {@link Browser#javaScriptEngine()}.
* @param arguments Arguments for the script (web elements, values etc.
* @return Result object of script execution
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void stopEventMonitoring() {

/**
* Adds a listener for events that occur when a JavaScript callback with a named binding is executed.
* To add a binding, use {@link this.addJsBinding}.
* To add a binding, use {@link JavaScriptHandling#addScriptCallbackBinding(String)}.
* @param listener a listener to add, consuming a name of exposed script.
*/
public void addBindingCalledListener(Consumer<String> listener) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public NetworkInterceptor addResponseHandler(Predicate<HttpResponse> responseMat
* Currently, Selenium supports only a single network interceptor. Any new Network interceptor will override the previous one.
* And on {@link NetworkInterceptor#close()} the NetworkInterceptor class just calls the {@link Network#resetNetworkFilter()}, so it's enough to call it.
* If multiple network interceptors at the same time would be allowed, we may want to store all
* {@link NetworkInterceptor} classes to call {@link NetworkInterceptor::close()} for each.
* {@link NetworkInterceptor} classes to call {@link NetworkInterceptor#close()} for each.
*/
public void clearNetworkInterceptor() {
resetNetworkFilter();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ public class LoggingParameters {

/**
* Initializes logging parameters.
* @param enabled enabled or not.
* @param logLevel expected log level.
*/
public LoggingParameters(boolean enabled, LogLevel logLevel) {

Expand Down

0 comments on commit 7dbfca5

Please sign in to comment.