Sobes.tech

QA / QA Automation

Tell me about pytest. What is TFL used for (presumably meant: what is pytest used for in general)?

188

Tell me, what locators did you use to find elements on the page.

186

Is a string a mutable or immutable data type? What is the essence of the division into mutable and immutable types? Name examples.

186

Let's talk about white box testing — what types do you know? Briefly.

184

""" Implement a BankAccount class Initializes owner: str, balance: float Methods: -- deposit: Adds funds to the balance -- withdraw: Deducts funds """ class BankAccount: pass

181

Tell me about the structure of an HTTP request and response.

171

What are the main groups of HTTP response codes you know?

166

""" Copying """ a = [[1, 2], ["str", "str"]] b = a.copy() b[0].append(3) # print(a) # print(b) print(b[0] is a[0])

165

Tell me about idempotency in HTTP. Which methods are idempotent and what do they do?

153
/6