Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Selenium locator issue on edit area of RichTextItem

    Hi,

    We have a problem to get the locator of the edit area of RichTextItem by Selenium IDE. When we click the edit area, the selenium IDE just has no action and cannot record the locator. Could we get any suggestions?

    This issue happens on 2012-03-08_v82p_PowerEdition and we use selenium IDE 1.7.2

    Steps to Reproduce:
    1. Start selenium IDE.
    2. Click the edit area of the RichTextItem.

    Code:
    isc.DynamicForm.create({
        width:400,
        top: 100,
        left: 100,
        fields:[
            {   autoDraw:false,
                ID:"contentEditor",
                height:155,           
                overflow:"hidden",
                canDragResize:true, showEdges:true,
                controlGroups:["fontControls", "styleControls"],
                type: "RichTextItem"
            }
        ]
    });

    #2
    Depending on the browser, the RTE sometimes has to be implemented as an iframe. This is true in Firefox. Selenium likely doesn't support this type of capture and replay so you'll need to use JavaScript to test this part of your application.

    Comment


      #3
      Thanks for your quick response!

      Comment

      Working...
      X