Front-End Web & Mobile

Testing web applications hosted in a private network using AWS Device Farm

AWS Device Farm offers an elastic Selenium Grid in the cloud that provides instant access to different versions of Chrome, Firefox, Internet Explorer, and Microsoft Edge browsers running on Windows servers. Today, thousands of web developers are leveraging Device Farm’s Grid to verify that their applications function and perform as intended on popular browsers. Recently, AWS Device Farm announced integration with Amazon Virtual Private Cloud (VPC), enabling developers to test web applications hosted in their private network (such as internal apps, or web apps hosted in a development or test environments). This blog post will describe how you can integrate Device Farm’s Desktop Browser Testing service with Amazon VPC to test your private web applications.

Solution overview

In this solution, we will be creating and hosting a sample static website on Amazon S3 and restricting access to it via an Amazon VPC in the us-west-2 Region. We will then create a new project in AWS Device Farm and configure the project to use our VPC. Once a Device Farm project is associated with a VPC, all future test sessions will be scheduled through that VPC. The following diagram illustrates our solution architecture:

This is an architecture diagram showing how AWS Device Farm connects to a VPC in us-west-2 Region. When a user runs their Selenium tests, the browser requested by the test is launched in Device Farm. The Device Farm browser connects to user’s VPC by creating an Elastic Network Interface in the VPC’s Private Subnet.

Note: AWS Device Farm is only available in the us-west-2 Region. Hence, Device Farm can only connect to VPCs within the us-west-2 Region. To access resources in a VPC in another Region, you must create a VPC in the us-west-2 Region and peer the VPCs. For information on peering VPCs, see Amazon VPC Peering Guide.

For this guide, we will be creating all our resources in us-west-2. In the AWS Management Console, set your Region to us-west-2 before proceeding to the next steps.

Step 1: Create an Amazon VPC

  1. Create a public-private Amazon VPC by following Step 1 and Step 2 in the Creating a VPC with Public and Private Subnets Once the VPC creation is successful, note the VPC ID, private subnet ID, and security group IDs. We will need this when configuring Device Farm to use this VPC.
  2. Check if a NAT gateway was created for your public subnet. You can do this by choosing NAT Gateways in the left navigation pane of the VPC console.
  3. Finally, create a VPC endpoint for Amazon S3 by following the steps here.
    Important: Make sure to select the “Gateway” option when creating the endpoint:

In the Create Endpoint page in VPC console, the option of AWS Services is selected as Service Category. After that, Amazon S3 and Gateway are selected as the Service Name and Type respectively.

After completing the preceding three steps, the VPC setup should look like the following :

VPC:

The VPC details page in the AWS Management Console should show the VPC state as Available, and DNS hostname and resolution as Enabled

Private and Public Subnets:

The Subnets page of the VPC console should show as private and public subnet connected to the VPC we just created

NAT gateway:

The NAT gateway page in the VPC console should show a new gateway that is automatically created and connected to the public subnet

Step 2: Create a sample static website using Amazon S3

We will now create a sample static website using Amazon Simple Storage Service (Amazon S3). To create the website using AWS Management Console, follow Configure a bucket as Static website guide.

After we have created a static website by following the steps in the guide, we will have an Amazon S3 website in one of the following formats:

http://bucket-name.s3-website.us-west-2.amazonaws.com

http://bucket-name.s3-website-us-west-2.amazonaws.com

For this blog, we can create a website using the sample index.html file provided in the preceding guide. Here is the file again for reference:

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>My Website Home Page</title>
</head>
<body>
  <h1>Welcome to my website</h1>
  <p>Now hosted on AWS!</p>
</body>
</html>

Once the bucket is created, we can see the URL of the website in the Amazon S3 console under the Properties section:

The URL of the website is displayed under the Static website hosting section of the S3 bucket properties page

Using the URL, we can navigate to the website.

Note: If you are unable to view the website at this stage, make sure you have given public access to your S3 bucket.

Now, let us update our S3 bucket’s policy to allow access only from the VPC we created in Step 1 of this guide. We can do this by updating our S3 bucket policy to the following (make sure to replace the bucket name and VPC ID with your information):

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": "*",
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::xxxx-mywebapp2/*",
            "Condition": {
                "StringEquals": {
                    "aws:sourceVpc": "vpc-048x1234567x123x1"
                }
            }
        }
    ]
}

Note: If you open your website after applying the preceding bucket policy, you should not be able to access it from the public internet.

Step 3: Create an AWS Device Farm project and configure your VPC

Now that we have a static website hosted in our private Amazon VPC, let’s understand how we can test that website using AWS Device Farm.

First, create a Device Farm project with your VPC details by following these steps:

  1. Sign in to the Device Farm console at https://console.aws.amazon.com/devicefarm.
  2. On the left side navigation panel, choose Desktop Browser Testing, then choose Projects.
  3. Click “New Project” on the top right side of the console.
  4. Enter a name for your project.
  5. In the Virtual Private Cloud (VPC) Settings section, select the VPC we created in the previous section, and the Private Subnets and Security Group attached to that VPC.
  6. Then click Create to create the project. From the project page, make a note of the project ARN. It looks like arn:aws:devicefarm:us-west-2:111122223333:testgrid-project:123e4567-e89b-12d3-a456-426655440000. We will need the project ARN in the next step.

In the AWS Device Farm project settings page, a VPC, a private subnet, and a security group are selected from the dropdown.

Step 4: Create a Selenium test script and run it on AWS Device Farm

To test the static web app we created, we need to write an automated test script using the Selenium framework. We can use the following sample Selenium Python script to test the website we created. The script first launches a Selenium Session in our Device Farm account. It then launches a Firefox browser instance hosted in AWS Device Farm and navigates to the web URL. It then asserts if the words “Welcome to my website” appear on the webpage.

test.py:

# Import the AWS SDK and Selenium libraries for Python
import boto3
from selenium.webdriver import FirefoxOptions
from selenium.webdriver import Remote
from selenium.webdriver.common.by import By

# Initialize a DeviceFarmClient in us-west-2
devicefarm_client = boto3.client("devicefarm", region_name="us-west-2")

# Create a pre-signed web driver hub URL:
testgrid_url_response = devicefarm_client.create_test_grid_url(
    projectArn="arn:aws:devicefarm:us-west-2:111122223333:testgrid-project:123e4567-e89b-12d3-a456-426655440000",
    expiresInSeconds=300)

# Use the FirefoxOptions class to request a browser instance
driver = Remote(testgrid_url_response['url'], options=FirefoxOptions())

try:
    driver.implicitly_wait(30)
    driver.maximize_window()
    driver.get("http://xxxx-mywebapp.s3-website-us-west-2.amazonaws.com/")
    element = driver.find_element(By.TAG_NAME, "h1")
    assert element.text == 'Welcome to my website'
finally:
    # Deletes the session once the test execution is complete
    driver.quit()

Make the following changes to the preceding script:

  1. Replace the projectArn with the ARN of the project you have created in Step 3.
  2. Update the URL with the Amazon S3 URL of your website that you have created in Step 1.

We can now run the script from our local machine by navigating to the folder where we have stored the script and running the following:

$ python3 test.py

Once the script starts running, navigate to the Device Farm console, choose Projects under “Desktop Browser Testing”, and select the relevant Project to see the session artifacts:

Video from the session is seen under the video tab in the session detail page of the AWS Device Farm console

Action logs from the session are seen under the Actions tab in the session detail page of the AWS Device Farm console

Console and webdriver logs from the session are seen under the Files tab in the session detail page of the AWS Device Farm console

You can see from the video recording that Device Farm was able to launch our website from within our VPC and validate the assertion in our test.

Conclusion

Testing your web applications on different browser environments helps ensure your application delivers a delightful user experience, independent of the browser used to access it. AWS Device Farm offers a one-stop solution for testing your web applications on desktop and mobile browsers. Start using AWS Device Farm today.

About the author

Sindhoor Grandhi

Sindhoor Grandhi is a Senior Product Manager for AWS Device Farm. He is passionate about helping customers ship high quality applications.