This repository was archived by the owner on Nov 29, 2018. It is now read-only.
-
-
Couldn't load subscription status.
- Fork 195
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
selenium ide problem that "clickAndWait" becomes "click". #419
Copy link
Copy link
Closed
Description
Originally reported on Google Code with ID 419
There is a problem that "clickAndWait" becomes "click" in selenium ide. This bug occurs when the event record of selenium ide is stopped, and it adds and the line is deleted Reproduction Steps: 1.Please select full powers by Ctrl + A while recording with selenium ide and delete all the tests with Delete. 2.And, when a new event is recorded, it can be confirmed that the button click is not "clickAndWait" but "click". Fix: editor.js Editor.prototype.addCommand function } else { // this.lastCommandIndex = this.view.getRecordIndex(); //bug!! this.lastCommandIndex = this.getTestCase().commands.length; //fix this.getTestCase().commands.splice(this.lastCommandIndex, 0, command); this.view.rowInserted(this.lastCommandIndex); this.timeoutID = setTimeout("editor.clearLastCommand()", 300); } It is repaired for the time being by this. Repaired in selenium ide version 1.0.4 and 1.0.2 is confirmed. A detailed explanation is in the blog of me Japanese. http://d.hatena.ne.jp/rti7743/20090929/1254237759 Reported by super.rti on 2010-03-10 20:11:47
- _Attachment: [editor.js.patch](https://storage.googleapis.com/google-code-attachments/selenium/issue-419/comment-0/editor.js.patch)_