Skip to content

Commit 996301b

Browse files
author
Vasyl Vavrychuk
committed
fixed lack of ability to select text in inputs
1 parent b6c13ae commit 996301b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

web/webdriver-app.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -663,13 +663,11 @@ WebDriverJsController.prototype.onQuit = function() {
663663
};
664664

665665
WebDriverJsController.prototype.onWebDriverUrlPortChange = function() {
666-
var input = document.getElementsByName('webDriverUrlPort')[0];
667-
this.view.setDriverUrlPort(input.value);
666+
this.view.updateSessionDepControls();
668667
};
669668

670669
WebDriverJsController.prototype.onWebPageChange = function() {
671-
var input = document.getElementsByName('webPage')[0];
672-
this.view.setWebPage(input.value);
670+
this.view.updateSessionDepControls();
673671
};
674672

675673
document.addEventListener("DOMContentLoaded", function(event) {

0 commit comments

Comments
 (0)