Hi folks,
Is there any comprehensive samples project out there? Something with a static page that loads with all of the basic html types being manipulated.
Currently I've looked at the
screenplay-pattern-todomvc
serenity-screenplay-train-demo (Think the website has been updated so that this project is now out of sync)
and I don't see any examples of handling radio buttons (can see it in PageObjects) via the screenplay framework nor alerts.
this is pretty low level UI interaction which I think Screenplay's attempting to abstract us away from but we still need to be able to do it?
To accept an alert for example I have the following code
BrowseTheWeb.as(theActorInTheSpotlight()).getDriver().switchTo().alert().accept();
however I don't see how to wrap this in a performable this isn't wrappable in a Performable or Task.
I'm new to the Screenplay framework but have been working with Selenium & WebDriver for a long time.
I'm hoping there's a straightforward sample test suite that I've just completely missed in my research.
Thanks,
Mark.