Tag: "cellphone"

Mobile Testing with Selenium and Android Ice Cream Sandwich

Today we’ve added Android to our Selenium grid, which means you can now use our grid for mobile testing as well.
We’ve hooked up an Android Ice Cream Sandwich emulator to the grid, which speaks Webdriver protocol.

You can now test how your website behaves and how a page looks like on an Android cellphone by using webdriver.
An example in ruby code:

#!/usr/bin/env ruby
require "rubygems"
gem "selenium-client"
gem "selenium-webdriver"
require "selenium-webdriver"
require "selenium/client"

caps = Selenium::WebDriver::Remote::Capabilities.android
driver = Selenium::WebDriver.for(
  :remote,
  :url => "http://api_key:api_secret@hub.testingbot.com:4444/wd/hub",
  :desired_capabilities => caps)
driver.navigate.to "http://www.google.com"
element = driver.find_element(:name, 'q')
element.send_keys "Hello WebDriver!"
element.submit
puts driver.title
driver.quit

Starting from today this functionality is available to all our customers.

Let us know what you think. Enjoy!

VN:F [1.9.22_1171]
Rating: 9.0/10 (1 vote cast)
VN:F [1.9.22_1171]
Rating: 0 (from 0 votes)

Receive SMS alerts when a Selenium test fails

Today we’ve added SMS support to our alert options.
If a test fails, we can now alert you via e-mail, push notification and SMS.

Every paying plan comes with a number of available SMS messages / month.
You can set up an alert to instantly receive an SMS message as soon as a test fails, or you can choose to receive a message once a day.

The packages include the following monthly SMS credits:

  • Small Team: 5 SMS credits
  • Team: 10 SMS credits
  • Pro: 20 SMS credits
  • Enterprise: 40 SMS credits

This new alert option provides for instant feedback of your tests.
You’ll receive an alert seconds after we ran your Selenium test.
You can add an unlimited number of cellphone numbers which can be contacted when a test fails.

Thanks to Nexmo’s SMS service we reach over 200 countries, so we’re bound to support your country.

To see more features per package and to sign up, please head on over to our pricing page.

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.22_1171]
Rating: 0 (from 0 votes)