You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I pass parameters from run command pytest abc.py birthday=abcxyz
ex: def test_demo_site(self, birthday):
self.open("https://whoer.net/" birthday)
@thanhvodad There are a few predefined variable names that you can use for passing data into tests:
--data=DATA# (Extra test data. Access with "self.data" in tests.)--var1=DATA# (Extra test data. Access with "self.var1" in tests.)--var2=DATA# (Extra test data. Access with "self.var2" in tests.)--var3=DATA# (Extra test data. Access with "self.var3" in tests.)
How can I set the browser timezone ?
Thanks SUpportr
The text was updated successfully, but these errors were encountered: