History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: SEL-222
Type: Improvement Improvement
Status: Open Open
Priority: Minor Minor
Assignee: Unassigned
Reporter: Robert Zimmermann
Votes: 1
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Selenium

postTestResults should require an character set

Created: 28/Apr/06 09:17 AM   Updated: 12/May/06 10:37 AM
Component/s: TestRunner GUI/Suite Loader
Affects Version/s: 0.6
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
File Attachments: 1. Text File selenium-fitrunner.js.patch (0.5 kb)



 Description  « Hide
Test tables with characters other then ascii loose their non-ascii characters when posted via postTestResults().

Tested with Firefox.

The fix is to add the "accept-charset" attribute to the form element.

I'll attach an patch, containing an fix, I tested on Firefox.

regards,
 Robert

Reference:
http://www.w3.org/TR/html4/interact/forms.html#h-17.3

 All   Comments   Work Log   Change History      Sort Order:
Robert Zimmermann - 12/May/06 10:37 AM
There is one Bug in the fix:

it should be:
 document.createAttribute("accept-charset")

instead of
 dom.createAttribute("accept-charset")

regards,
 Robert