2
In addition to handling javascript alerts with Selenium Webdriver, it would be possible to invoke Selenium code execution-time alerts in the browser?
I would like to create the 3 types of javascript alert below using Selenium:
alerta
confirmação
prompt de entrada.
To facilitate understanding...
When accessing any page (I used w3c as an example) with Selenium:
WebDriver driver = new ChromeDriver();
driver.get("https://www.w3schools.com/JS/");
I want to invoke the 3 types of alert below with dynamic values.
Ball show man, that was it!
– RXSD