Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 QTP,我需要从 XML 表导入环境变量,但是导入的环境变量是导入的环境变量处于只读模式,无法编辑。
我需要知道是否有任何方法可以导入环境变量并对其进行编辑,并且我需要知道,不知何故,是否有任何方法可以从代码中创建环境变量(以编程方式)
要从代码创建环境变量,请使用以下 loc:
Environment("variablename")="Variablevalue" ' Create and intialise environment variable Print Environment("variablename") 'To retrieve value of variable