Google Search Console URL Testing Tools API . urlTestingTools . mobileFriendlyTest

Instance Methods

run(body, x__xgafv=None)

Runs Mobile-Friendly Test for a given URL.

Method Details

run(body, x__xgafv=None)
Runs Mobile-Friendly Test for a given URL.

Args:
  body: object, The request body. (required)
    The object takes the form of:

{ # Mobile-friendly test request.
    "url": "A String", # URL for inspection.
    "requestScreenshot": True or False, # Whether or not screenshot is requested. Default is false.
  }

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Mobile-friendly test response, including mobile-friendly issues and resource
      # issues.
    "testStatus": { # Final state of the test, including error details if necessary. # Final state of the test, can be either complete or an error.
      "status": "A String", # Status of the test.
      "details": "A String", # Error details if applicable.
    },
    "resourceIssues": [ # Information about embedded resources issues.
      { # Information about a resource with issue.
        "blockedResource": { # Blocked resource. # Describes a blocked resource issue.
          "url": "A String", # URL of the blocked resource.
        },
      },
    ],
    "mobileFriendliness": "A String", # Test verdict, whether the page is mobile friendly or not.
    "screenshot": { # Describe image data. # Screenshot of the requested URL.
      "mimeType": "A String", # The mime-type of the image data.
      "data": "A String", # Image data in format determined by the mime type. Currently, the format
          # will always be "image/png", but this might change in the future.
    },
    "mobileFriendlyIssues": [ # List of mobile-usability issues.
      { # Mobile-friendly issue.
        "rule": "A String", # Rule violated.
      },
    ],
  }