This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Here's the attempt by a Babel parser to deal with this code https://shorturl.at/clADR | |
// Totally not related to the proposed schema above. | |
/** | |
* All the valid ButtonSizes | |
*/ | |
export type ButtonSize = "small" | "medium" | "large"; | |
export function MyButton({ size = 'small' }: { size: ButtonSize }) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Taking Screenshots with Appium | |
I'll be using Python and a sample iOS application from Apple's Developer Library | |
This tutorial assumes you understand how to run, launch, and interact with your application. | |
''' | |
from appium import webdriver | |
import os |