How to automate Flash based pages using selenium webdriver

后端 未结 3 765
醉话见心
醉话见心 2021-02-02 04:45

I am a tester. We use one tool which contains pages developed using Flash. I need to automate few tasks which are repetitive for our testing purpose. I have knowledge on Seleniu

3条回答
  •  既然无缘
    2021-02-02 05:05

    Using sikulix-api did the work for me.

    After the standard selenium setup, take a screenshot of the element you want to click on and follow this code:

    Screen screen = new Screen();
    Pattern properties = new Pattern();
    screen.wait(properties, );
    screen.click();
    

    More functionality can be found in the official documentation: http://doc.sikuli.org/

    I used maven to import the library:

    
        com.sikulix
        sikulixapi
        1.1.0
    
    

提交回复
热议问题