forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding special keys support to sendKeys in all official formatters fo…
…r Selenium IDE + enhancement of plugin api for formatters with an additional type parameter. Fixes issue SeleniumHQ#6053
- Loading branch information
1 parent
b104cdf
commit f392466
Showing
12 changed files
with
520 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
<html:script type="application/javascript"> | ||
var ide_api = new API(); | ||
ide_api.addPlugin("[email protected]"); | ||
ide_api.addPluginProvidedFormatter("csharpwdformatter", "C# / NUnit / WebDriver", "chrome://csharp-formatters/content/formats/cs-wd.js"); | ||
ide_api.addPluginProvidedFormatter("csharpwdformatter", "C# / NUnit / WebDriver", "chrome://csharp-formatters/content/formats/cs-wd.js", "webdriver"); | ||
ide_api.addPluginProvidedFormatter("csharpformatter", "C# / NUnit / Remote Control", "chrome://csharp-formatters/content/formats/cs-rc.js"); | ||
</html:script> | ||
</overlay> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
<html:script type="application/javascript"> | ||
var ide_api = new API(); | ||
ide_api.addPlugin("[email protected]"); | ||
ide_api.addPluginProvidedFormatter("webdriverjunit4formatter", "Java / JUnit 4 / WebDriver", "chrome://java-formatters/content/formats/webdriver-junit4.js"); | ||
ide_api.addPluginProvidedFormatter("webdriverjunit4formatter", "Java / JUnit 4 / WebDriver", "chrome://java-formatters/content/formats/webdriver-junit4.js", "webdriver"); | ||
ide_api.addPluginProvidedFormatter("backedjunit4formatter", "Java / JUnit 4 / WebDriver Backed", "chrome://java-formatters/content/formats/java-backed-junit4.js"); | ||
ide_api.addPluginProvidedFormatter("junit4formatter", "Java / JUnit 4 / Remote Control", "chrome://java-formatters/content/formats/java-rc-junit4.js"); | ||
ide_api.addPluginProvidedFormatter("junit3formatter", "Java / JUnit 3 / Remote Control", "chrome://java-formatters/content/formats/java-rc.js"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
<html:script type="application/javascript"> | ||
var ide_api = new API(); | ||
ide_api.addPlugin("[email protected]"); | ||
ide_api.addPluginProvidedFormatter("pythonwdformatter", "Python 2 / unittest / WebDriver", "chrome://python-formatters/content/formats/python2-wd.js"); | ||
ide_api.addPluginProvidedFormatter("pythonwdformatter", "Python 2 / unittest / WebDriver", "chrome://python-formatters/content/formats/python2-wd.js", "webdriver"); | ||
ide_api.addPluginProvidedFormatter("pythonformatters", "Python 2 / unittest / Remote Control", "chrome://python-formatters/content/formats/python2-rc.js"); | ||
</html:script> | ||
</overlay> |
Oops, something went wrong.