
Automating Browser Testing with Selenium and Dyalog APL
Dive into the world of user interface testing using Selenium, a powerful open-source tool that allows automation of various browser operations. Explore how Dyalog/Selenium covers make browser testing easier with APL on Windows platform. Selenium opens doors for automated testing of HTML5/JS based interfaces, making testing realistic and efficient.
Download Presentation

Please find below an Image/Link to download the presentation.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.
You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.
E N D
Presentation Transcript
User Interface Testing With Selenium Morten Kromberg, CXO #DYNA16
1 Selenium Selenium is a widely used open-source tool for automating browsers with growing support from browser vendors Selenium provides an API that allows you to perform just about any operation that a user could: click on buttons, select items from drop-downs, press keys to enter text, drag and drop items, perform exact mouse movements and different types of clicks. #DYNA16 User Interface Testing with Selenium
2 github Dyalog/Selenium An open-source project with some covers for Selenium to make it easy to drive browsers from Dyalog APL. Currently requires the Microsoft .NET bindings and can only do the testing from Microsoft Windows. The web server can be running anywhere, and we hope to add other client platforms in the future. #DYNA16 User Interface Testing with Selenium
3 #DYNA16 User Interface Testing with Selenium
4 Example r TestTryAPL;S;result Basic test that TryAPL is working S ##.Selenium S.InitBrowser '' S.GoTo 'http://tryapl.org' 'APLedit' S.SendKeys '1 2 3+4 5 6' S.('APLedit' SendKeys Keys.Return) result 'ClassName' S.Find 'result' r result S.WaitFor '5 7 9' '1 2 3+4 5 6 failed' #DYNA16 User Interface Testing with Selenium
5 Getting Started #DYNA16 User Interface Testing with Selenium
6 Lots of Examples (MS3 QA) https://github.com/Dyalog/MiServer/tree/development/MS3/QA/Examples #DYNA16 User Interface Testing with Selenium
7 Summary Selenium is available from APL! Windows only until further notice (The server can be anywhere of course) Automated testing of HTML5/JS based User Interfaces is realistic! #DYNA16 User Interface Testing with Selenium