반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- mlops
- keda
- CANARY
- Kubeflow
- seldon core
- eBPF
- Kopf
- opensearch
- nginx ingress
- Continuous Deployment
- Pulumi
- opentelemetry
- blue/green
- operator
- 카오스 엔지니어링
- Litmus
- serving
- knative
- Model Serving
- Argo
- Kubernetes 인증
- xdp
- argocd
- gitops
- 오퍼레이터
- Kubernetes
- MLflow
- CI/CD
- tekton
- kubernetes operator
Archives
- Today
- Total
목록playwright python (1)
Kubernetes 이야기

Playwright는 다음을 참고한다. 이번에는 Python을 활용하여 Playwright 를 사용하는 방법에 대해 알아보자. playwright를 활용한 e2e 테스트 Playwright는 최신 웹 앱에 대한 신뢰할 수 있는 종단 간 테스트를 지원하는 테스트 자동화 도구이다. Playwright는 Chromium, WebKit 및 Firefox를 포함한 모든 최신 렌더링 엔진을 지원한다. 설치 설치는 npm kmaster.tistory.com Playwright에서 예제를 보면 다음과 같이 스크립트를 생성한다. from playwright.sync_api import sync_playwright with sync_playwright() as p: browser = p.chromium.launch() c..
개발/python
2023. 2. 22. 22:08